diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-04-17 10:36:32 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-04-17 11:10:02 +0200 |
commit | c0ee7a47e4327b69c59d0c4135152b4db3111d55 (patch) | |
tree | c8e74e72034b11fc74976ad231fea78d13f70176 /3dparty/MDB2/Driver/Reverse/Common.php | |
parent | 28199a4052988ca38369f18c20d61c832077550a (diff) | |
download | nextcloud-server-c0ee7a47e4327b69c59d0c4135152b4db3111d55.tar.gz nextcloud-server-c0ee7a47e4327b69c59d0c4135152b4db3111d55.zip |
fix more strict error is mdb2
Diffstat (limited to '3dparty/MDB2/Driver/Reverse/Common.php')
-rw-r--r-- | 3dparty/MDB2/Driver/Reverse/Common.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/3dparty/MDB2/Driver/Reverse/Common.php b/3dparty/MDB2/Driver/Reverse/Common.php index 4a411fea6d2..c78d84f760a 100644 --- a/3dparty/MDB2/Driver/Reverse/Common.php +++ b/3dparty/MDB2/Driver/Reverse/Common.php @@ -107,7 +107,7 @@ class MDB2_Driver_Reverse_Common extends MDB2_Module_Common */ function getTableFieldDefinition($table, $field) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -141,7 +141,7 @@ class MDB2_Driver_Reverse_Common extends MDB2_Module_Common */ function getTableIndexDefinition($table, $index) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -193,7 +193,7 @@ class MDB2_Driver_Reverse_Common extends MDB2_Module_Common */ function getTableConstraintDefinition($table, $index) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -220,7 +220,7 @@ class MDB2_Driver_Reverse_Common extends MDB2_Module_Common */ function getSequenceDefinition($sequence) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -273,7 +273,7 @@ class MDB2_Driver_Reverse_Common extends MDB2_Module_Common */ function getTriggerDefinition($trigger) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -407,7 +407,7 @@ class MDB2_Driver_Reverse_Common extends MDB2_Module_Common */ function tableInfo($result, $mode = null) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } |