From 490644674a7ac08e4ccaab67e797098393795628 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marcin=20Cie=C5=9Blak?= Date: Fri, 9 Mar 2012 22:29:22 +0000 Subject: [PATCH] Fix PostgreSQL updater broken by r113487 --- includes/db/DatabasePostgres.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 { -- 2.20.1