From c576b0afa8b8ca2beca31cb675b0073c7756f92f Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Mon, 25 Dec 2006 17:25:18 +0000 Subject: [PATCH] Add dummy selectDB function. --- includes/DatabasePostgres.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 ?> -- 2.20.1