Index: trunk/extensions/CommunityHiring/CommunityHiring.php |
— | — | @@ -1,6 +1,13 @@ |
2 | 2 | <?php |
3 | 3 | // Community department job applications |
4 | 4 | |
| 5 | +$wgExtensionCredits['other'][] = array( |
| 6 | + 'path' => __FILE__, |
| 7 | + 'name' => 'CommunityHirings', |
| 8 | + 'author' => 'Andrew Garrett', |
| 9 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:CommunityHirings', |
| 10 | +); |
| 11 | + |
5 | 12 | $wgSpecialPages['CommunityHiring'] = 'SpecialCommunityHiring'; |
6 | 13 | $wgAutoloadClasses['SpecialCommunityHiring'] = dirname(__FILE__) . "/SpecialCommunityHiring.php"; |
7 | 14 | |
Index: trunk/extensions/CommunityApplications/CommunityApplications.php |
— | — | @@ -4,6 +4,13 @@ |
5 | 5 | die; |
6 | 6 | } |
7 | 7 | |
| 8 | +$wgExtensionCredits['other'][] = array( |
| 9 | + 'path' => __FILE__, |
| 10 | + 'name' => 'CommunityApplications', |
| 11 | + 'author' => 'Andrew Garrett', |
| 12 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:CommunityApplications', |
| 13 | +); |
| 14 | + |
8 | 15 | // Reader for CommunityHiring data |
9 | 16 | $wgSpecialPages['CommunityApplications'] = 'SpecialCommunityApplications'; |
10 | 17 | $wgAutoloadClasses['SpecialCommunityApplications'] = dirname(__FILE__) . "/SpecialCommunityApplications.php"; |