Remove check for MW_NO_SETUP
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
This commit is contained in:
parent
35317bfecf
commit
edc9edbc76
1 changed files with 1 additions and 3 deletions
|
|
@ -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' ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue