From: <var...@us...> - 2010-01-22 15:12:29
|
Revision: 7290 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7290&view=rev Author: vargenau Date: 2010-01-22 15:12:23 +0000 (Fri, 22 Jan 2010) Log Message: ----------- Fix notice when editing a wiki page Modified Paths: -------------- trunk/lib/pear/DB/common.php Modified: trunk/lib/pear/DB/common.php =================================================================== --- trunk/lib/pear/DB/common.php 2010-01-22 14:59:22 UTC (rev 7289) +++ trunk/lib/pear/DB/common.php 2010-01-22 15:12:23 UTC (rev 7290) @@ -1137,7 +1137,7 @@ if (DB::isError($sth)) { return $sth; } - $ret =& $this->execute($sth, $params); + $ret = $this->execute($sth, $params); $this->freePrepared($sth); return $ret; } else { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |