diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-05-13 20:56:25 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-05-13 20:56:25 +0200 |
commit | 68fd5a5d5872e0a83509ab195057859edfd332ed (patch) | |
tree | 31f496f6e163b0f783ac0cf3dcf81b0e77685f89 /3rdparty | |
parent | 1a2ab2ef6881ce4f9e53a84f53ee5e578427434e (diff) | |
download | nextcloud-server-68fd5a5d5872e0a83509ab195057859edfd332ed.tar.gz nextcloud-server-68fd5a5d5872e0a83509ab195057859edfd332ed.zip |
some mdb2 pgsql fixes
Diffstat (limited to '3rdparty')
-rw-r--r-- | 3rdparty/MDB2/Driver/Manager/pgsql.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/MDB2/Driver/Manager/pgsql.php b/3rdparty/MDB2/Driver/Manager/pgsql.php index e034e6b7381..a7b776cc1b7 100644 --- a/3rdparty/MDB2/Driver/Manager/pgsql.php +++ b/3rdparty/MDB2/Driver/Manager/pgsql.php @@ -513,7 +513,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common * @return mixed array of view names on success, a MDB2 error on failure * @access public */ - function listViews() + function listViews($database = null) { $db = $this->getDBInstance(); if (PEAR::isError($db)) { @@ -645,7 +645,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common * @return mixed array of table names on success, a MDB2 error on failure * @access public */ - function listTables() + function listTables($database = null) { $db = $this->getDBInstance(); if (PEAR::isError($db)) { @@ -952,7 +952,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common * @return mixed array of sequence names on success, a MDB2 error on failure * @access public */ - function listSequences() + function listSequences($database = null) { $db = $this->getDBInstance(); if (PEAR::isError($db)) { |