From: Jan Schneider Date: Sat, 23 Oct 2010 09:58:52 +0000 (+0200) Subject: Remove call-time pass-by-reference. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=86f413e74f764d4e2b3b1f59d79b83291605c533;p=horde.git Remove call-time pass-by-reference. --- diff --git a/framework/Db/lib/Horde/Db/Adapter/SplitRead.php b/framework/Db/lib/Horde/Db/Adapter/SplitRead.php index 903929e04..01a4a6e82 100644 --- a/framework/Db/lib/Horde/Db/Adapter/SplitRead.php +++ b/framework/Db/lib/Horde/Db/Adapter/SplitRead.php @@ -412,7 +412,7 @@ class Horde_Db_Adapter_SplitRead implements Horde_Db_Adapter */ public function addLock(&$sql, array $options = array()) { - $this->_write->addLock(&$sql, $options); + $this->_write->addLock($sql, $options); } }