|
From: <var...@us...> - 2020-12-04 17:17:32
|
Revision: 10175
http://sourceforge.net/p/phpwiki/code/10175
Author: vargenau
Date: 2020-12-04 17:17:29 +0000 (Fri, 04 Dec 2020)
Log Message:
-----------
Use // comment syntax
Modified Paths:
--------------
trunk/lib/WikiDB/backend/file.php
Modified: trunk/lib/WikiDB/backend/file.php
===================================================================
--- trunk/lib/WikiDB/backend/file.php 2020-12-04 17:13:59 UTC (rev 10174)
+++ trunk/lib/WikiDB/backend/file.php 2020-12-04 17:17:29 UTC (rev 10175)
@@ -99,7 +99,7 @@
if (!file_exists($filename)) return NULL;
if (!filesize($filename)) return array();
if ($fd = @fopen($filename, "rb")) {
- $locked = flock($fd, 1); # Read lock
+ $locked = flock($fd, 1); // Read lock
if (!$locked) {
ExitWiki("Timeout while obtaining lock. Please try again");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|