From: Marcin Cieślak Date: Fri, 9 Mar 2012 22:29:22 +0000 (+0000) Subject: Fix PostgreSQL updater broken by r113487 X-Git-Tag: 1.31.0-rc.0~24312 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=490644674a7ac08e4ccaab67e797098393795628;p=lhc%2Fweb%2Fwiklou.git Fix PostgreSQL updater broken by r113487 --- diff --git a/includes/db/DatabasePostgres.php b/includes/db/DatabasePostgres.php index 7dcbc5fb48..6452f54069 100644 --- a/includes/db/DatabasePostgres.php +++ b/includes/db/DatabasePostgres.php @@ -929,7 +929,7 @@ class DatabasePostgres extends DatabaseBase { wfDebug("Schema \"" . $desired_schema . "\" already in the search path\n"); } else { /** - * Apped our schema (e.g. 'mediawiki') in front + * Append our schema (e.g. 'mediawiki') in front * of the search path * Fixes bug 15816 */ @@ -937,6 +937,7 @@ class DatabasePostgres extends DatabaseBase { array_unshift( $search_path, $this->addIdentifierQuotes( $desired_schema )); $this->setSearchPath( $search_path ); + $this->mCoreSchema = $desired_schema; wfDebug("Schema \"" . $desired_schema . "\" added to the search path\n"); } } else {