From: Greg Sabino Mullane Date: Mon, 25 Dec 2006 17:25:18 +0000 (+0000) Subject: Add dummy selectDB function. X-Git-Tag: 1.31.0-rc.0~54771 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=c576b0afa8b8ca2beca31cb675b0073c7756f92f;p=lhc%2Fweb%2Fwiklou.git Add dummy selectDB function. --- diff --git a/includes/DatabasePostgres.php b/includes/DatabasePostgres.php index 77f8374e8d..f5693094d0 100644 --- a/includes/DatabasePostgres.php +++ b/includes/DatabasePostgres.php @@ -851,6 +851,13 @@ class DatabasePostgres extends Database { return '"' . preg_replace( '/"/', '""', $s) . '"'; } -} + /* For now, does nothing */ + function selectDB( $db ) { + return true; + } + + + +} // end DatabasePostgres class ?>