From: <var...@us...> - 2021-06-24 19:27:57
|
Revision: 10326 http://sourceforge.net/p/phpwiki/code/10326 Author: vargenau Date: 2021-06-24 19:27:56 +0000 (Thu, 24 Jun 2021) Log Message: ----------- PearDB_ffpgsql.php: remove undefined variable $options Modified Paths: -------------- trunk/lib/WikiDB/backend/PearDB_ffpgsql.php Modified: trunk/lib/WikiDB/backend/PearDB_ffpgsql.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_ffpgsql.php 2021-06-24 17:14:05 UTC (rev 10325) +++ trunk/lib/WikiDB/backend/PearDB_ffpgsql.php 2021-06-24 19:27:56 UTC (rev 10326) @@ -417,7 +417,7 @@ } else { $result = $dbh->query($sql); } - return new WikiDB_backend_PearDB_iter($this, $result, $options); + return new WikiDB_backend_PearDB_iter($this, $result); } /* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |