mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Interwiki
synced 2024-11-15 10:37:36 +00:00
Move InterwikiLogFormatter autoloader down a bit.
This commit is contained in:
parent
d91662c7fe
commit
51b7a70e3e
Notes:
Siebrand Mazeland
2012-04-25 11:23:01 +00:00
|
@ -37,7 +37,6 @@ $wgExtensionCredits['specialpage'][] = array(
|
|||
);
|
||||
|
||||
$wgExtensionFunctions[] = 'setupInterwikiExtension';
|
||||
$wgAutoloadClasses['InterwikiLogFormatter'] = $dir . 'Interwiki_body.php';
|
||||
|
||||
$wgResourceModules['SpecialInterwiki'] = array(
|
||||
'styles' => 'Interwiki.css',
|
||||
|
@ -50,6 +49,7 @@ $dir = dirname( __FILE__ ) . '/';
|
|||
$wgExtensionMessagesFiles['Interwiki'] = $dir . 'Interwiki.i18n.php';
|
||||
$wgExtensionMessagesFiles['InterwikiAlias'] = $dir . 'Interwiki.alias.php';
|
||||
$wgAutoloadClasses['SpecialInterwiki'] = $dir . 'Interwiki_body.php';
|
||||
$wgAutoloadClasses['InterwikiLogFormatter'] = $dir . 'Interwiki_body.php';
|
||||
$wgSpecialPages['Interwiki'] = 'SpecialInterwiki';
|
||||
$wgSpecialPageGroups['Interwiki'] = 'wiki';
|
||||
|
||||
|
|
Loading…
Reference in a new issue