|
From: <var...@us...> - 2021-09-03 16:30:00
|
Revision: 10537
http://sourceforge.net/p/phpwiki/code/10537
Author: vargenau
Date: 2021-09-03 16:29:57 +0000 (Fri, 03 Sep 2021)
Log Message:
-----------
PDO: let us unlock the same as we locked
Modified Paths:
--------------
trunk/lib/WikiDB/backend/PDO.php
Modified: trunk/lib/WikiDB/backend/PDO.php
===================================================================
--- trunk/lib/WikiDB/backend/PDO.php 2021-09-03 13:24:39 UTC (rev 10536)
+++ trunk/lib/WikiDB/backend/PDO.php 2021-09-03 16:29:57 UTC (rev 10537)
@@ -1137,7 +1137,7 @@
$sth->bindParam(2, $id, PDO::PARAM_INT);
$sth->execute();
}
- $this->unlock(array('page'));
+ $this->unlock(array('page', 'version', 'recent', 'nonempty', 'link'));
return $id;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|