Remove check for wikimedia-mode file, which no longer exists
authorwithoutaname <drevitchi@gmail.com>
Sun, 20 Jul 2014 04:31:08 +0000 (21:31 -0700)
committerwithoutaname <drevitchi@gmail.com>
Sun, 20 Jul 2014 04:31:08 +0000 (21:31 -0700)
Change-Id: Ib463e7687b7b35147bddef68b9548e7b86c5ef52

maintenance/doMaintenance.php

index 47e6a89..28a0545 100644 (file)
@@ -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();
 }