From 63601400e476c6cf43d985f3e7b9864681695ed4 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Fri, 18 Jan 2013 16:46:04 +0100 Subject: Update to MediaWiki 1.20.2 this update includes: * adjusted Arch Linux skin * updated FluxBBAuthPlugin * patch for https://bugzilla.wikimedia.org/show_bug.cgi?id=44024 --- mw-config/index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mw-config/index.php') diff --git a/mw-config/index.php b/mw-config/index.php index c65be69c..065d1879 100644 --- a/mw-config/index.php +++ b/mw-config/index.php @@ -8,11 +8,11 @@ define( 'MW_CONFIG_CALLBACK', 'Installer::overrideConfig' ); define( 'MEDIAWIKI_INSTALL', true ); -chdir( dirname( dirname( __FILE__ ) ) ); +chdir( dirname( __DIR__ ) ); if ( isset( $_SERVER['MW_COMPILED'] ) ) { - require ( 'phase3/includes/WebStart.php' ); + require ( 'core/includes/WebStart.php' ); } else { - require( dirname( dirname( __FILE__ ) ) . '/includes/WebStart.php' ); + require( dirname( __DIR__ ) . '/includes/WebStart.php' ); } wfInstallerMain(); @@ -20,7 +20,7 @@ wfInstallerMain(); function wfInstallerMain() { global $wgRequest, $wgLang, $wgMetaNamespace, $wgCanonicalNamespaceNames; - $installer = new WebInstaller( $wgRequest ); + $installer = InstallerOverrides::getWebInstaller( $wgRequest ); if ( !$installer->startSession() ) { $installer->finish(); -- cgit v1.2.2