Merge "Clarify userrights-conflict"
[lhc/web/wiklou.git] / includes / Setup.php
1 <?php
2 /**
3 * Include most things that's need to customize the site.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * This file is not a valid entry point, perform no further processing unless
25 * MEDIAWIKI is defined
26 */
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 exit( 1 );
29 }
30
31 # The main wiki script and things like database
32 # conversion and maintenance scripts all share a
33 # common setup of including lots of classes and
34 # setting up a few globals.
35 #
36
37 $fname = 'Setup.php';
38 wfProfileIn( $fname );
39
40 // Check to see if we are at the file scope
41 if ( !isset( $wgVersion ) ) {
42 echo "Error, Setup.php must be included from the file scope, after DefaultSettings.php\n";
43 die( 1 );
44 }
45
46 // Set various default paths sensibly...
47 if ( $wgScript === false ) {
48 $wgScript = "$wgScriptPath/index$wgScriptExtension";
49 }
50 if ( $wgLoadScript === false ) {
51 $wgLoadScript = "$wgScriptPath/load$wgScriptExtension";
52 }
53
54 if ( $wgArticlePath === false ) {
55 if ( $wgUsePathInfo ) {
56 $wgArticlePath = "$wgScript/$1";
57 } else {
58 $wgArticlePath = "$wgScript?title=$1";
59 }
60 }
61
62 if ( !empty( $wgActionPaths ) && !isset( $wgActionPaths['view'] ) ) {
63 # 'view' is assumed the default action path everywhere in the code
64 # but is rarely filled in $wgActionPaths
65 $wgActionPaths['view'] = $wgArticlePath;
66 }
67
68 if ( $wgStylePath === false ) {
69 $wgStylePath = "$wgScriptPath/skins";
70 }
71 if ( $wgLocalStylePath === false ) {
72 $wgLocalStylePath = "$wgScriptPath/skins";
73 }
74 if ( $wgStyleDirectory === false ) {
75 $wgStyleDirectory = "$IP/skins";
76 }
77 if ( $wgExtensionAssetsPath === false ) {
78 $wgExtensionAssetsPath = "$wgScriptPath/extensions";
79 }
80
81 if ( $wgLogo === false ) {
82 $wgLogo = "$wgStylePath/common/images/wiki.png";
83 }
84
85 if ( $wgUploadPath === false ) {
86 $wgUploadPath = "$wgScriptPath/images";
87 }
88 if ( $wgUploadDirectory === false ) {
89 $wgUploadDirectory = "$IP/images";
90 }
91 if ( $wgReadOnlyFile === false ) {
92 $wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
93 }
94 if ( $wgFileCacheDirectory === false ) {
95 $wgFileCacheDirectory = "{$wgUploadDirectory}/cache";
96 }
97 if ( $wgDeletedDirectory === false ) {
98 $wgDeletedDirectory = "{$wgUploadDirectory}/deleted";
99 }
100
101 if ( isset( $wgFileStore['deleted']['directory'] ) ) {
102 $wgDeletedDirectory = $wgFileStore['deleted']['directory'];
103 }
104
105 if ( isset( $wgFooterIcons['copyright'] ) &&
106 isset( $wgFooterIcons['copyright']['copyright'] ) &&
107 $wgFooterIcons['copyright']['copyright'] === array() )
108 {
109 if ( isset( $wgCopyrightIcon ) && $wgCopyrightIcon ) {
110 $wgFooterIcons['copyright']['copyright'] = $wgCopyrightIcon;
111 } elseif ( $wgRightsIcon || $wgRightsText ) {
112 $wgFooterIcons['copyright']['copyright'] = array(
113 'url' => $wgRightsUrl,
114 'src' => $wgRightsIcon,
115 'alt' => $wgRightsText,
116 );
117 } else {
118 unset( $wgFooterIcons['copyright']['copyright'] );
119 }
120 }
121
122 if ( isset( $wgFooterIcons['poweredby'] ) &&
123 isset( $wgFooterIcons['poweredby']['mediawiki'] ) &&
124 $wgFooterIcons['poweredby']['mediawiki']['src'] === null )
125 {
126 $wgFooterIcons['poweredby']['mediawiki']['src'] = "$wgStylePath/common/images/poweredby_mediawiki_88x31.png";
127 }
128
129 /**
130 * Unconditional protection for NS_MEDIAWIKI since otherwise it's too easy for a
131 * sysadmin to set $wgNamespaceProtection incorrectly and leave the wiki insecure.
132 *
133 * Note that this is the definition of editinterface and it can be granted to
134 * all users if desired.
135 */
136 $wgNamespaceProtection[NS_MEDIAWIKI] = 'editinterface';
137
138 /**
139 * The canonical names of namespaces 6 and 7 are, as of v1.14, "File"
140 * and "File_talk". The old names "Image" and "Image_talk" are
141 * retained as aliases for backwards compatibility.
142 */
143 $wgNamespaceAliases['Image'] = NS_FILE;
144 $wgNamespaceAliases['Image_talk'] = NS_FILE_TALK;
145
146 /**
147 * Initialise $wgLockManagers to include basic FS version
148 */
149 $wgLockManagers[] = array(
150 'name' => 'fsLockManager',
151 'class' => 'FSLockManager',
152 'lockDirectory' => "{$wgUploadDirectory}/lockdir",
153 );
154 $wgLockManagers[] = array(
155 'name' => 'nullLockManager',
156 'class' => 'NullLockManager',
157 );
158
159 /**
160 * Initialise $wgLocalFileRepo from backwards-compatible settings
161 */
162 if ( !$wgLocalFileRepo ) {
163 if ( isset( $wgFileStore['deleted']['hash'] ) ) {
164 $deletedHashLevel = $wgFileStore['deleted']['hash'];
165 } else {
166 $deletedHashLevel = $wgHashedUploadDirectory ? 3 : 0;
167 }
168 $wgLocalFileRepo = array(
169 'class' => 'LocalRepo',
170 'name' => 'local',
171 'directory' => $wgUploadDirectory,
172 'scriptDirUrl' => $wgScriptPath,
173 'scriptExtension' => $wgScriptExtension,
174 'url' => $wgUploadBaseUrl ? $wgUploadBaseUrl . $wgUploadPath : $wgUploadPath,
175 'hashLevels' => $wgHashedUploadDirectory ? 2 : 0,
176 'thumbScriptUrl' => $wgThumbnailScriptPath,
177 'transformVia404' => !$wgGenerateThumbnailOnParse,
178 'deletedDir' => $wgDeletedDirectory,
179 'deletedHashLevels' => $deletedHashLevel
180 );
181 }
182 /**
183 * Initialise shared repo from backwards-compatible settings
184 */
185 if ( $wgUseSharedUploads ) {
186 if ( $wgSharedUploadDBname ) {
187 $wgForeignFileRepos[] = array(
188 'class' => 'ForeignDBRepo',
189 'name' => 'shared',
190 'directory' => $wgSharedUploadDirectory,
191 'url' => $wgSharedUploadPath,
192 'hashLevels' => $wgHashedSharedUploadDirectory ? 2 : 0,
193 'thumbScriptUrl' => $wgSharedThumbnailScriptPath,
194 'transformVia404' => !$wgGenerateThumbnailOnParse,
195 'dbType' => $wgDBtype,
196 'dbServer' => $wgDBserver,
197 'dbUser' => $wgDBuser,
198 'dbPassword' => $wgDBpassword,
199 'dbName' => $wgSharedUploadDBname,
200 'dbFlags' => ( $wgDebugDumpSql ? DBO_DEBUG : 0 ) | DBO_DEFAULT,
201 'tablePrefix' => $wgSharedUploadDBprefix,
202 'hasSharedCache' => $wgCacheSharedUploads,
203 'descBaseUrl' => $wgRepositoryBaseUrl,
204 'fetchDescription' => $wgFetchCommonsDescriptions,
205 );
206 } else {
207 $wgForeignFileRepos[] = array(
208 'class' => 'FileRepo',
209 'name' => 'shared',
210 'directory' => $wgSharedUploadDirectory,
211 'url' => $wgSharedUploadPath,
212 'hashLevels' => $wgHashedSharedUploadDirectory ? 2 : 0,
213 'thumbScriptUrl' => $wgSharedThumbnailScriptPath,
214 'transformVia404' => !$wgGenerateThumbnailOnParse,
215 'descBaseUrl' => $wgRepositoryBaseUrl,
216 'fetchDescription' => $wgFetchCommonsDescriptions,
217 );
218 }
219 }
220 if ( $wgUseInstantCommons ) {
221 $wgForeignFileRepos[] = array(
222 'class' => 'ForeignAPIRepo',
223 'name' => 'wikimediacommons',
224 'apibase' => WebRequest::detectProtocol() === 'https' ?
225 'https://commons.wikimedia.org/w/api.php' :
226 'http://commons.wikimedia.org/w/api.php',
227 'hashLevels' => 2,
228 'fetchDescription' => true,
229 'descriptionCacheExpiry' => 43200,
230 'apiThumbCacheExpiry' => 86400,
231 );
232 }
233 /*
234 * Add on default file backend config for file repos.
235 * FileBackendGroup will handle initializing the backends.
236 */
237 if ( !isset( $wgLocalFileRepo['backend'] ) ) {
238 $wgLocalFileRepo['backend'] = $wgLocalFileRepo['name'] . '-backend';
239 }
240 foreach ( $wgForeignFileRepos as &$repo ) {
241 if ( !isset( $repo['directory'] ) && $repo['class'] === 'ForeignAPIRepo' ) {
242 $repo['directory'] = $wgUploadDirectory; // b/c
243 }
244 if ( !isset( $repo['backend'] ) ) {
245 $repo['backend'] = $repo['name'] . '-backend';
246 }
247 }
248 unset( $repo ); // no global pollution; destroy reference
249
250 if ( is_null( $wgEnableAutoRotation ) ) {
251 // Only enable auto-rotation when the bitmap handler can rotate
252 $wgEnableAutoRotation = BitmapHandler::canRotate();
253 }
254
255 if ( $wgRCFilterByAge ) {
256 # # Trim down $wgRCLinkDays so that it only lists links which are valid
257 # # as determined by $wgRCMaxAge.
258 # # Note that we allow 1 link higher than the max for things like 56 days but a 60 day link.
259 sort( $wgRCLinkDays );
260 for ( $i = 0; $i < count( $wgRCLinkDays ); $i++ ) {
261 if ( $wgRCLinkDays[$i] >= $wgRCMaxAge / ( 3600 * 24 ) ) {
262 $wgRCLinkDays = array_slice( $wgRCLinkDays, 0, $i + 1, false );
263 break;
264 }
265 }
266 }
267
268 if ( $wgSkipSkin ) {
269 $wgSkipSkins[] = $wgSkipSkin;
270 }
271
272 # Set default shared prefix
273 if ( $wgSharedPrefix === false ) {
274 $wgSharedPrefix = $wgDBprefix;
275 }
276
277 if ( !$wgCookiePrefix ) {
278 if ( $wgSharedDB && $wgSharedPrefix && in_array( 'user', $wgSharedTables ) ) {
279 $wgCookiePrefix = $wgSharedDB . '_' . $wgSharedPrefix;
280 } elseif ( $wgSharedDB && in_array( 'user', $wgSharedTables ) ) {
281 $wgCookiePrefix = $wgSharedDB;
282 } elseif ( $wgDBprefix ) {
283 $wgCookiePrefix = $wgDBname . '_' . $wgDBprefix;
284 } else {
285 $wgCookiePrefix = $wgDBname;
286 }
287 }
288 $wgCookiePrefix = strtr( $wgCookiePrefix, '=,; +."\'\\[', '__________' );
289
290 $wgUseEnotif = $wgEnotifUserTalk || $wgEnotifWatchlist;
291
292 if ( $wgMetaNamespace === false ) {
293 $wgMetaNamespace = str_replace( ' ', '_', $wgSitename );
294 }
295
296
297 // Default value is either the suhosin limit or -1 for unlimited
298 if ( $wgResourceLoaderMaxQueryLength === false ) {
299 $maxValueLength = ini_get( 'suhosin.get.max_value_length' );
300 $wgResourceLoaderMaxQueryLength = $maxValueLength > 0 ? $maxValueLength : -1;
301 }
302
303 /**
304 * Definitions of the NS_ constants are in Defines.php
305 * @private
306 */
307 $wgCanonicalNamespaceNames = array(
308 NS_MEDIA => 'Media',
309 NS_SPECIAL => 'Special',
310 NS_TALK => 'Talk',
311 NS_USER => 'User',
312 NS_USER_TALK => 'User_talk',
313 NS_PROJECT => 'Project',
314 NS_PROJECT_TALK => 'Project_talk',
315 NS_FILE => 'File',
316 NS_FILE_TALK => 'File_talk',
317 NS_MEDIAWIKI => 'MediaWiki',
318 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
319 NS_TEMPLATE => 'Template',
320 NS_TEMPLATE_TALK => 'Template_talk',
321 NS_HELP => 'Help',
322 NS_HELP_TALK => 'Help_talk',
323 NS_CATEGORY => 'Category',
324 NS_CATEGORY_TALK => 'Category_talk',
325 );
326
327 /// @todo UGLY UGLY
328 if ( is_array( $wgExtraNamespaces ) ) {
329 $wgCanonicalNamespaceNames = $wgCanonicalNamespaceNames + $wgExtraNamespaces;
330 }
331
332 # These are now the same, always
333 # To determine the user language, use $wgLang->getCode()
334 $wgContLanguageCode = $wgLanguageCode;
335
336 # Easy to forget to falsify $wgShowIPinHeader for static caches.
337 # If file cache or squid cache is on, just disable this (DWIMD).
338 # Do the same for $wgDebugToolbar.
339 if ( $wgUseFileCache || $wgUseSquid ) {
340 $wgShowIPinHeader = false;
341 $wgDebugToolbar = false;
342 }
343
344 # Doesn't make sense to have if disabled.
345 if ( !$wgEnotifMinorEdits ) {
346 $wgHiddenPrefs[] = 'enotifminoredits';
347 }
348
349 # $wgDisabledActions is deprecated as of 1.18
350 foreach ( $wgDisabledActions as $action ) {
351 $wgActions[$action] = false;
352 }
353
354 # We always output HTML5 since 1.22, overriding these is no longer supported
355 # we set them here for extensions that depend on its value.
356 $wgHtml5 = true;
357 $wgXhtmlDefaultNamespace = 'http://www.w3.org/1999/xhtml';
358 $wgJsMimeType = 'text/javascript';
359
360 if ( !$wgHtml5Version && $wgAllowRdfaAttributes ) {
361 # see http://www.w3.org/TR/rdfa-in-html/#document-conformance
362 if ( $wgMimeType == 'application/xhtml+xml' ) {
363 $wgHtml5Version = 'XHTML+RDFa 1.0';
364 } else {
365 $wgHtml5Version = 'HTML+RDFa 1.0';
366 }
367 }
368
369 # Blacklisted file extensions shouldn't appear on the "allowed" list
370 $wgFileExtensions = array_values( array_diff ( $wgFileExtensions, $wgFileBlacklist ) );
371
372 if ( $wgArticleCountMethod === null ) {
373 $wgArticleCountMethod = $wgUseCommaCount ? 'comma' : 'link';
374 }
375
376 if ( $wgInvalidateCacheOnLocalSettingsChange ) {
377 $wgCacheEpoch = max( $wgCacheEpoch, gmdate( 'YmdHis', @filemtime( "$IP/LocalSettings.php" ) ) );
378 }
379
380 if ( $wgAjaxUploadDestCheck ) {
381 $wgAjaxExportList[] = 'SpecialUpload::ajaxGetExistsWarning';
382 }
383
384 if ( $wgNewUserLog ) {
385 # Add a new log type
386 $wgLogTypes[] = 'newusers';
387 $wgLogNames['newusers'] = 'newuserlogpage';
388 $wgLogHeaders['newusers'] = 'newuserlogpagetext';
389 $wgLogActionsHandlers['newusers/newusers'] = 'NewUsersLogFormatter';
390 $wgLogActionsHandlers['newusers/create'] = 'NewUsersLogFormatter';
391 $wgLogActionsHandlers['newusers/create2'] = 'NewUsersLogFormatter';
392 $wgLogActionsHandlers['newusers/byemail'] = 'NewUsersLogFormatter';
393 $wgLogActionsHandlers['newusers/autocreate'] = 'NewUsersLogFormatter';
394 }
395
396 if ( $wgCookieSecure === 'detect' ) {
397 $wgCookieSecure = ( WebRequest::detectProtocol() === 'https' );
398 }
399
400 // Disable MWDebug for command line mode, this prevents MWDebug from eating up
401 // all the memory from logging SQL queries on maintenance scripts
402 global $wgCommandLineMode;
403 if ( $wgDebugToolbar && !$wgCommandLineMode ) {
404 MWDebug::init();
405 }
406
407 if ( !class_exists( 'AutoLoader' ) ) {
408 require_once "$IP/includes/AutoLoader.php";
409 }
410
411 wfProfileIn( $fname . '-exception' );
412 MWExceptionHandler::installHandler();
413 wfProfileOut( $fname . '-exception' );
414
415 wfProfileIn( $fname . '-includes' );
416 require_once "$IP/includes/normal/UtfNormalUtil.php";
417 require_once "$IP/includes/GlobalFunctions.php";
418 require_once "$IP/includes/ProxyTools.php";
419 require_once "$IP/includes/normal/UtfNormalDefines.php";
420 wfProfileOut( $fname . '-includes' );
421
422 if ( $wgSecureLogin && substr( $wgServer, 0, 2 ) !== '//' ) {
423 $wgSecureLogin = false;
424 wfWarn( 'Secure login was enabled on a server that only supports HTTP or HTTPS. Disabling secure login.' );
425 }
426
427 # Now that GlobalFunctions is loaded, set defaults that depend
428 # on it.
429 if ( $wgTmpDirectory === false ) {
430 $wgTmpDirectory = wfTempDir();
431 }
432
433 if ( $wgCanonicalServer === false ) {
434 $wgCanonicalServer = wfExpandUrl( $wgServer, PROTO_HTTP );
435 }
436
437 // $wgHTCPMulticastRouting got renamed to $wgHTCPRouting in MediaWiki 1.22
438 // ensure back compatibility.
439 if ( !$wgHTCPRouting && $wgHTCPMulticastRouting ) {
440 $wgHTCPRouting = $wgHTCPMulticastRouting;
441 }
442
443 // Initialize $wgHTCPRouting from backwards-compatible settings that
444 // comes from pre 1.20 version.
445 if ( !$wgHTCPRouting && $wgHTCPMulticastAddress ) {
446 $wgHTCPRouting = array(
447 '' => array(
448 'host' => $wgHTCPMulticastAddress,
449 'port' => $wgHTCPPort,
450 )
451 );
452 }
453
454 wfProfileIn( $fname . '-misc1' );
455
456 # Raise the memory limit if it's too low
457 wfMemoryLimit();
458
459 /**
460 * Set up the timezone, suppressing the pseudo-security warning in PHP 5.1+
461 * that happens whenever you use a date function without the timezone being
462 * explicitly set. Inspired by phpMyAdmin's treatment of the problem.
463 */
464 if ( is_null( $wgLocaltimezone ) ) {
465 wfSuppressWarnings();
466 $wgLocaltimezone = date_default_timezone_get();
467 wfRestoreWarnings();
468 }
469
470 date_default_timezone_set( $wgLocaltimezone );
471 if ( is_null( $wgLocalTZoffset ) ) {
472 $wgLocalTZoffset = date( 'Z' ) / 60;
473 }
474
475 # Useful debug output
476 if ( $wgCommandLineMode ) {
477 $wgRequest = new FauxRequest( array() );
478
479 wfDebug( "\n\nStart command line script $self\n" );
480 } else {
481 # Can't stub this one, it sets up $_GET and $_REQUEST in its constructor
482 $wgRequest = new WebRequest;
483
484 $debug = "\n\nStart request {$wgRequest->getMethod()} {$wgRequest->getRequestURL()}\n";
485
486 if ( $wgDebugPrintHttpHeaders ) {
487 $debug .= "HTTP HEADERS:\n";
488
489 foreach ( $wgRequest->getAllHeaders() as $name => $value ) {
490 $debug .= "$name: $value\n";
491 }
492 }
493 wfDebug( $debug );
494 }
495
496 wfProfileOut( $fname . '-misc1' );
497 wfProfileIn( $fname . '-memcached' );
498
499 $wgMemc = wfGetMainCache();
500 $messageMemc = wfGetMessageCacheStorage();
501 $parserMemc = wfGetParserCacheStorage();
502 $wgLangConvMemc = wfGetLangConverterCacheStorage();
503
504 wfDebug( 'CACHES: ' . get_class( $wgMemc ) . '[main] ' .
505 get_class( $messageMemc ) . '[message] ' .
506 get_class( $parserMemc ) . "[parser]\n" );
507
508 wfProfileOut( $fname . '-memcached' );
509
510 # # Most of the config is out, some might want to run hooks here.
511 wfRunHooks( 'SetupAfterCache' );
512
513 wfProfileIn( $fname . '-session' );
514
515 # If session.auto_start is there, we can't touch session name
516 if ( !wfIniGetBool( 'session.auto_start' ) ) {
517 session_name( $wgSessionName ? $wgSessionName : $wgCookiePrefix . '_session' );
518 }
519
520 if ( !defined( 'MW_NO_SESSION' ) && !$wgCommandLineMode ) {
521 if ( $wgRequest->checkSessionCookie() || isset( $_COOKIE[$wgCookiePrefix . 'Token'] ) ) {
522 wfSetupSession();
523 $wgSessionStarted = true;
524 } else {
525 $wgSessionStarted = false;
526 }
527 }
528
529 wfProfileOut( $fname . '-session' );
530 wfProfileIn( $fname . '-globals' );
531
532 $wgContLang = Language::factory( $wgLanguageCode );
533 $wgContLang->initEncoding();
534 $wgContLang->initContLang();
535
536 // Now that variant lists may be available...
537 $wgRequest->interpolateTitle();
538 $wgUser = RequestContext::getMain()->getUser(); # BackCompat
539
540 /**
541 * @var $wgLang Language
542 */
543 $wgLang = new StubUserLang;
544
545 /**
546 * @var OutputPage
547 */
548 $wgOut = RequestContext::getMain()->getOutput(); # BackCompat
549
550 /**
551 * @var $wgParser Parser
552 */
553 $wgParser = new StubObject( 'wgParser', $wgParserConf['class'], array( $wgParserConf ) );
554
555 if ( !is_object( $wgAuth ) ) {
556 $wgAuth = new StubObject( 'wgAuth', 'AuthPlugin' );
557 wfRunHooks( 'AuthPluginSetup', array( &$wgAuth ) );
558 }
559
560 # Placeholders in case of DB error
561 $wgTitle = null;
562
563 $wgDeferredUpdateList = array();
564
565 wfProfileOut( $fname . '-globals' );
566 wfProfileIn( $fname . '-extensions' );
567
568 # Extension setup functions for extensions other than skins
569 # Entries should be added to this variable during the inclusion
570 # of the extension file. This allows the extension to perform
571 # any necessary initialisation in the fully initialised environment
572 foreach ( $wgExtensionFunctions as $func ) {
573 # Allow closures in PHP 5.3+
574 if ( is_object( $func ) && $func instanceof Closure ) {
575 $profName = $fname . '-extensions-closure';
576 } elseif ( is_array( $func ) ) {
577 if ( is_object( $func[0] ) ) {
578 $profName = $fname . '-extensions-' . get_class( $func[0] ) . '::' . $func[1];
579 } else {
580 $profName = $fname . '-extensions-' . implode( '::', $func );
581 }
582 } else {
583 $profName = $fname . '-extensions-' . strval( $func );
584 }
585
586 wfProfileIn( $profName );
587 call_user_func( $func );
588 wfProfileOut( $profName );
589 }
590
591 wfDebug( "Fully initialised\n" );
592 $wgFullyInitialised = true;
593
594 wfProfileOut( $fname . '-extensions' );
595 wfProfileOut( $fname );