summaryrefslogtreecommitdiff
path: root/includes/database/pgsql
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-11-03 05:55:57 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-11-03 05:55:57 +0000
commitd0f8f90a364fb1ab6253e9e2cfa42ecd57cc6c3b (patch)
treeff72a2b6b625de24c862c63aaab7c143e9a4120d /includes/database/pgsql
parent0f956d42022bf6fd1e830b9bcb3fad6fa493a426 (diff)
downloadbrdo-d0f8f90a364fb1ab6253e9e2cfa42ecd57cc6c3b.tar.gz
brdo-d0f8f90a364fb1ab6253e9e2cfa42ecd57cc6c3b.tar.bz2
#303889 by David_Rothstein, kbahey, and chx: Make it possible to update D6 -> D7.
Diffstat (limited to 'includes/database/pgsql')
-rw-r--r--includes/database/pgsql/database.inc5
1 files changed, 1 insertions, 4 deletions
diff --git a/includes/database/pgsql/database.inc b/includes/database/pgsql/database.inc
index 25cec5528..793e97c74 100644
--- a/includes/database/pgsql/database.inc
+++ b/includes/database/pgsql/database.inc
@@ -61,10 +61,7 @@ class DatabaseConnection_pgsql extends DatabaseConnection {
}
}
catch (PDOException $e) {
- if (!function_exists('module_implements')) {
- _db_need_install();
- }
- //watchdog('database', var_export($e, TRUE) . $e->getMessage(), NULL, WATCHDOG_ERROR);
+ _db_check_install_needed();
if ($options['throw_exception']) {
if ($query instanceof DatabaseStatement) {
$query_string = $stmt->queryString;