From: <var...@us...> - 2021-09-03 07:49:08
|
Revision: 10531 http://sourceforge.net/p/phpwiki/code/10531 Author: vargenau Date: 2021-09-03 07:49:05 +0000 (Fri, 03 Sep 2021) Log Message: ----------- Make RecentChanges work with PDO Modified Paths: -------------- trunk/lib/WikiDB/backend/PDO.php Modified: trunk/lib/WikiDB/backend/PDO.php =================================================================== --- trunk/lib/WikiDB/backend/PDO.php 2021-09-03 07:12:24 UTC (rev 10530) +++ trunk/lib/WikiDB/backend/PDO.php 2021-09-03 07:49:05 UTC (rev 10531) @@ -1402,7 +1402,7 @@ if (!is_object($result)) { return false; } - $this->_backend = &$backend; + $backend = &$this->_backend; $rec = $result->fetch(PDO::FETCH_ASSOC); if (isset($rec['pagedata'])) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |