r16874 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r16873‎ | r16874 | r16875 >
Date:19:37, 8 October 2006
Author:greg
Status:old
Tags:
Comment:
Explicitly set Postgres schemas: needed for updater.
Modified paths:
  • /trunk/phase3/config/index.php (modified) (history)

Diff [purge]

Index: trunk/phase3/config/index.php
@@ -1380,14 +1380,18 @@
13811381 \$wgEnotifWatchlist = $enotifwatchlist; # UPO
13821382 \$wgEmailAuthentication = $eauthent;
13831383
 1384+\$wgDBtype = \"{$slconf['DBtype']}\";
13841385 \$wgDBserver = \"{$slconf['DBserver']}\";
13851386 \$wgDBname = \"{$slconf['DBname']}\";
13861387 \$wgDBuser = \"{$slconf['DBuser']}\";
13871388 \$wgDBpassword = \"{$slconf['DBpassword']}\";
 1389+\$wgDBport = \"{$slconf['DBport']}\";
13881390 \$wgDBprefix = \"{$slconf['DBprefix']}\";
1389 -\$wgDBtype = \"{$slconf['DBtype']}\";
1390 -\$wgDBport = \"{$slconf['DBport']}\";
13911391
 1392+# Schemas for Postgres
 1393+\$wgDBmwschema = \"{$slconf['DBmwschema']}\";
 1394+\$wgDBts2schema = \"{$slconf['DBts2schema']}\";
 1395+
13921396 # Experimental charset support for MySQL 4.1/5.0.
13931397 \$wgDBmysql5 = {$conf->DBmysql5};
13941398