Remove check for MW_NO_SETUP
authorChad Horohoe <chadh@wikimedia.org>
Fri, 13 Jan 2017 01:01:14 +0000 (17:01 -0800)
committerChad Horohoe <chadh@wikimedia.org>
Fri, 13 Jan 2017 01:05:06 +0000 (17:05 -0800)
This protection is in place for a single extension, Maintenance.
Said extension is probably broken anyway and has been for quite
some time.

Plus, it doesn't even really work like it would intend, the extension
uses special pages and this is a require_once, so a subsequent
request to WebStart.php (which isn't even called by extensions)
wouldn't re-require it.

tldr: This is pointless

Change-Id: I22e7418d2b46c00d4009c370c24ac4b8bc43190a

includes/WebStart.php

index d063ce3..6e4fb09 100644 (file)
@@ -133,9 +133,7 @@ if ( ob_get_level() == 0 ) {
        ob_start( 'wfOutputHandler' );
 }
 
-if ( !defined( 'MW_NO_SETUP' ) ) {
-       require_once "$IP/includes/Setup.php";
-}
+require_once "$IP/includes/Setup.php";
 
 # Multiple DBs or commits might be used; keep the request as transactional as possible
 if ( isset( $_SERVER['REQUEST_METHOD'] ) && $_SERVER['REQUEST_METHOD'] === 'POST' ) {