From: Greg Sabino Mullane Date: Sun, 8 Oct 2006 19:37:17 +0000 (+0000) Subject: Explicitly set Postgres schemas: needed for updater. X-Git-Tag: 1.31.0-rc.0~55573 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=c58f3453edf33c08866cf8d4c8e9b200d061cb1f;p=lhc%2Fweb%2Fwiklou.git Explicitly set Postgres schemas: needed for updater. --- 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};