From: Sam Reed Date: Thu, 14 Apr 2011 21:21:28 +0000 (+0000) Subject: Followup r85944, move UtfNormalDefins stuff out of extensions profiling area X-Git-Tag: 1.31.0-rc.0~30831 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=32e0b5915081aaad3788c778790e9dd7eb4f53f9;p=lhc%2Fweb%2Fwiklou.git Followup r85944, move UtfNormalDefins stuff out of extensions profiling area --- diff --git a/includes/Setup.php b/includes/Setup.php index a7bf62991e..a264cb996d 100644 --- a/includes/Setup.php +++ b/includes/Setup.php @@ -461,8 +461,6 @@ foreach ( $wgExtensionFunctions as $func ) { wfProfileOut( $profName ); } -require_once( MWInit::compiledPath( 'includes/normal/UtfNormalDefines.php' ) ); - // For compatibility wfRunHooks( 'LogPageValidTypes', array( &$wgLogTypes ) ); wfRunHooks( 'LogPageLogName', array( &$wgLogNames ) ); @@ -472,4 +470,7 @@ wfRunHooks( 'LogPageActionText', array( &$wgLogActions ) ); wfDebug( "Fully initialised\n" ); $wgFullyInitialised = true; wfProfileOut( $fname . '-extensions' ); + +require_once( MWInit::compiledPath( 'includes/normal/UtfNormalDefines.php' ) ); + wfProfileOut( $fname );