diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2008-03-22 18:37:51 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2008-03-22 18:37:51 +0100 |
| commit | c1fb4a5e205689d1b2dca5a7c52dd9643502ad40 (patch) | |
| tree | 6dca0018fa45464c09db9cb6d2ca4a30ea50a07e /functions.php | |
| parent | 621ffb007a5c72259c82745a99285ed47c1096a6 (diff) | |
file_is_locked: return true when flock() is undefined
Diffstat (limited to 'functions.php')
| -rw-r--r-- | functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php index 958f137df..de5464837 100644 --- a/functions.php +++ b/functions.php @@ -1957,7 +1957,7 @@ return true; } } - return false; + return true; // consider the file always locked and skip the test } function make_lockfile($filename) { |