Index: trunk/extensions/ExtensionDistributor/ExtensionDistributor.php |
— | — | @@ -45,13 +45,16 @@ |
46 | 46 | /******************** |
47 | 47 | * Registration |
48 | 48 | */ |
| 49 | +$dir = dirname(__FILE__) . '/'; |
49 | 50 | $wgSpecialPages['ExtensionDistributor'] = 'ExtensionDistributorPage'; |
50 | | -$wgAutoloadClasses['ExtensionDistributorPage'] = dirname(__FILE__).'/ExtensionDistributor_body.php'; |
51 | | -$wgExtensionMessagesFiles['ExtensionDistributor'] = dirname(__FILE__).'/ExtensionDistributor.i18n.php'; |
| 51 | +$wgSpecialPageGroups['ExtensionDistributor'] = 'developer'; |
| 52 | +$wgAutoloadClasses['ExtensionDistributorPage'] = $dir . 'ExtensionDistributor_body.php'; |
| 53 | +$wgExtensionMessagesFiles['ExtensionDistributor'] = $dir . 'ExtensionDistributor.i18n.php'; |
52 | 54 | |
53 | 55 | $wgExtensionCredits['specialpage'][] = array( |
54 | 56 | 'name' => 'Extension Distributor', |
55 | 57 | 'author' => 'Tim Starling', |
| 58 | + 'svn-date' => '$LastChangedDate$', |
56 | 59 | 'svn-revision' => '$LastChangedRevision$', |
57 | 60 | 'url' => 'http://www.mediawiki.org/wiki/Extension:ExtensionDistributor', |
58 | 61 | 'description' => 'This is an extension for distributing snapshot archives of extensions', |
Property changes on: trunk/extensions/ExtensionDistributor/ExtensionDistributor.php |
___________________________________________________________________ |
Modified: svn:keywords |
59 | 62 | - LastChangedRevision |
60 | 63 | + LastChangedRevision LastChangedDate |