From: Ævar Arnfjörð Bjarmason Date: Mon, 25 Apr 2005 12:47:10 +0000 (+0000) Subject: * Parser.php was being included twice in a row X-Git-Tag: 1.5.0alpha1~137 X-Git-Url: http://git.cyclocoop.org/wiki/Target_page?a=commitdiff_plain;h=cd57e83bef37e749ae1ea722afad8297c6251295;p=lhc%2Fweb%2Fwiklou.git * Parser.php was being included twice in a row --- diff --git a/includes/Setup.php b/includes/Setup.php index 738abb4452..a0e0cc9d8b 100644 --- a/includes/Setup.php +++ b/includes/Setup.php @@ -48,7 +48,6 @@ $fname = 'Setup.php'; wfProfileIn( $fname ); wfProfileIn( $fname.'-includes' ); - require_once( 'GlobalFunctions.php' ); require_once( 'Hooks.php' ); require_once( 'Namespace.php' ); @@ -64,7 +63,6 @@ require_once( 'Block.php' ); require_once( 'MessageCache.php' ); require_once( 'BlockCache.php' ); require_once( 'Parser.php' ); -require_once( 'Parser.php' ); require_once( 'ParserCache.php' ); require_once( 'WebRequest.php' ); require_once( 'LoadBalancer.php' );