From 2997b116f36d65bbc9c7178c8066074e8aa7f483 Mon Sep 17 00:00:00 2001 From: withoutaname Date: Sat, 19 Jul 2014 21:31:08 -0700 Subject: [PATCH] Remove check for wikimedia-mode file, which no longer exists Change-Id: Ib463e7687b7b35147bddef68b9548e7b86c5ef52 --- maintenance/doMaintenance.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/maintenance/doMaintenance.php b/maintenance/doMaintenance.php index 47e6a898b4..28a054549d 100644 --- a/maintenance/doMaintenance.php +++ b/maintenance/doMaintenance.php @@ -77,17 +77,6 @@ if ( defined( 'MW_CONFIG_CALLBACK' ) ) { # Use a callback function to configure MediaWiki call_user_func( MW_CONFIG_CALLBACK ); } else { - if ( file_exists( "$IP/../wmf-config/wikimedia-mode" ) ) { - // Load settings, using wikimedia-mode if needed - // @todo FIXME: Replace this hack with general farm-friendly code - # @todo FIXME: Wikimedia-specific stuff needs to go away to an ext - # Maybe a hook? - // @codingStandardsIgnoreStart MediaWiki.NamingConventions.ValidGlobalName.wgPrefix - global $cluster; - $cluster = 'pmtpa'; - // @codingStandardsIgnoreEnd - require "$IP/../wmf-config/wgConf.php"; - } // Require the configuration (probably LocalSettings.php) require $maintenance->loadSettings(); } -- 2.20.1