Index: trunk/extensions/Makebot/Makebot.php |
— | — | @@ -49,7 +49,6 @@ |
50 | 50 | */ |
51 | 51 | function efMakeBot() { |
52 | 52 | global $wgLogTypes, $wgLogNames, $wgLogHeaders, $wgLogActions; |
53 | | - wfLoadExtensionMessages('Makebot'); |
54 | 53 | $wgLogTypes[] = 'makebot'; |
55 | 54 | $wgLogNames['makebot'] = 'makebot-logpage'; |
56 | 55 | $wgLogHeaders['makebot'] = 'makebot-logpagetext'; |
Index: trunk/extensions/Makebot/Makebot.class.php |
— | — | @@ -12,6 +12,7 @@ |
13 | 13 | * Constructor |
14 | 14 | */ |
15 | 15 | function MakeBot() { |
| 16 | + wfLoadExtensionMessages('Makebot'); |
16 | 17 | SpecialPage::SpecialPage( 'Makebot', 'makebot' ); |
17 | 18 | } |
18 | 19 | |