diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-01-14 18:10:22 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-01-14 18:11:32 +0100 |
commit | 5c179e6255141f33eae6a1520651bec0131127fb (patch) | |
tree | 4b0e73bf5c5617a004837dcc0fab9ab42a029560 /3rdparty/MDB2 | |
parent | bfdbcbee127062d1e9415047617370e424ab9631 (diff) | |
download | nextcloud-server-5c179e6255141f33eae6a1520651bec0131127fb.tar.gz nextcloud-server-5c179e6255141f33eae6a1520651bec0131127fb.zip |
fix another warning in pgsql
Diffstat (limited to '3rdparty/MDB2')
-rw-r--r-- | 3rdparty/MDB2/Driver/Manager/pgsql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/MDB2/Driver/Manager/pgsql.php b/3rdparty/MDB2/Driver/Manager/pgsql.php index 7542e9e8329..a2e80caa5ce 100644 --- a/3rdparty/MDB2/Driver/Manager/pgsql.php +++ b/3rdparty/MDB2/Driver/Manager/pgsql.php @@ -633,7 +633,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function listTables($database = null) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } |