Index: trunk/extensions/IndexFunction/IndexFunction.php |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | |
35 | 35 | # Setup the special page |
36 | 36 | $wgSpecialPages['Index'] = 'SpecialIndex'; |
37 | | -$wgSpecialPageGroups['Index'] = 'maintenance'; |
| 37 | +$wgSpecialPageGroups['Index'] = 'pages'; |
38 | 38 | $wgExtensionAliasesFiles['IndexFunction'] = $dir . 'IndexFunction.alias.php'; |
39 | 39 | $wgAutoloadClasses['SpecialIndex'] = $dir . 'SpecialIndex.php'; |
40 | 40 | |
Index: trunk/extensions/IndexFunction/SpecialIndex.php |
— | — | @@ -1,6 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | | -class SpecialIndex extends SpecialPage { |
| 4 | +class SpecialIndex extends UnlistedSpecialPage { |
5 | 5 | function __construct() { |
6 | 6 | parent::__construct( 'Index' ); |
7 | 7 | wfLoadExtensionMessages('IndexFunction'); |