Index: trunk/phase3/config/index.php |
— | — | @@ -1380,14 +1380,18 @@ |
1381 | 1381 | \$wgEnotifWatchlist = $enotifwatchlist; # UPO |
1382 | 1382 | \$wgEmailAuthentication = $eauthent; |
1383 | 1383 | |
| 1384 | +\$wgDBtype = \"{$slconf['DBtype']}\"; |
1384 | 1385 | \$wgDBserver = \"{$slconf['DBserver']}\"; |
1385 | 1386 | \$wgDBname = \"{$slconf['DBname']}\"; |
1386 | 1387 | \$wgDBuser = \"{$slconf['DBuser']}\"; |
1387 | 1388 | \$wgDBpassword = \"{$slconf['DBpassword']}\"; |
| 1389 | +\$wgDBport = \"{$slconf['DBport']}\"; |
1388 | 1390 | \$wgDBprefix = \"{$slconf['DBprefix']}\"; |
1389 | | -\$wgDBtype = \"{$slconf['DBtype']}\"; |
1390 | | -\$wgDBport = \"{$slconf['DBport']}\"; |
1391 | 1391 | |
| 1392 | +# Schemas for Postgres |
| 1393 | +\$wgDBmwschema = \"{$slconf['DBmwschema']}\"; |
| 1394 | +\$wgDBts2schema = \"{$slconf['DBts2schema']}\"; |
| 1395 | + |
1392 | 1396 | # Experimental charset support for MySQL 4.1/5.0. |
1393 | 1397 | \$wgDBmysql5 = {$conf->DBmysql5}; |
1394 | 1398 | |