Followup r85944, move UtfNormalDefins stuff out of extensions profiling area
authorSam Reed <reedy@users.mediawiki.org>
Thu, 14 Apr 2011 21:21:28 +0000 (21:21 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Thu, 14 Apr 2011 21:21:28 +0000 (21:21 +0000)
includes/Setup.php

index a7bf629..a264cb9 100644 (file)
@@ -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 );