From c58f3453edf33c08866cf8d4c8e9b200d061cb1f Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Sun, 8 Oct 2006 19:37:17 +0000 Subject: [PATCH] Explicitly set Postgres schemas: needed for updater. --- config/index.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/config/index.php b/config/index.php index 815d217d65..c74d2bd26d 100644 --- a/config/index.php +++ b/config/index.php @@ -1380,13 +1380,17 @@ if ( \$wgCommandLineMode ) { \$wgEnotifWatchlist = $enotifwatchlist; # UPO \$wgEmailAuthentication = $eauthent; +\$wgDBtype = \"{$slconf['DBtype']}\"; \$wgDBserver = \"{$slconf['DBserver']}\"; \$wgDBname = \"{$slconf['DBname']}\"; \$wgDBuser = \"{$slconf['DBuser']}\"; \$wgDBpassword = \"{$slconf['DBpassword']}\"; -\$wgDBprefix = \"{$slconf['DBprefix']}\"; -\$wgDBtype = \"{$slconf['DBtype']}\"; \$wgDBport = \"{$slconf['DBport']}\"; +\$wgDBprefix = \"{$slconf['DBprefix']}\"; + +# Schemas for Postgres +\$wgDBmwschema = \"{$slconf['DBmwschema']}\"; +\$wgDBts2schema = \"{$slconf['DBts2schema']}\"; # Experimental charset support for MySQL 4.1/5.0. \$wgDBmysql5 = {$conf->DBmysql5}; -- 2.20.1