Index: trunk/extensions/DeletedContributions/SpecialDeletedContributions.php |
— | — | @@ -1,10 +1,17 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | | - * Extension based on SpecialContributions for arhived revisions |
5 | | - * Modifications made to SpecialContributions.php by Aaron Schulz |
6 | | - * Key code snipets from HideRevision.php also modified for use here |
| 4 | + @ Extension based on SpecialContributions for arhived revisions |
| 5 | + @ Modifications made to SpecialContributions.php |
| 6 | + @ copyright � 2007 Aaron Schulz |
7 | 7 | */ |
8 | 8 | |
| 9 | +$wgExtensionCredits['specialpage'][] = array( |
| 10 | + 'author' => 'Aaron Schulz', |
| 11 | + 'name' => 'Deleted user contributions', |
| 12 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:DeletedContributions', |
| 13 | + 'description' => 'Gives sysops the ability to browse a user\'s deleted edits.' |
| 14 | +); |
| 15 | + |
9 | 16 | # Internationalisation |
10 | 17 | $wgExtensionFunctions[] = 'efLoadDeletedContribsMessages'; |
11 | 18 | |
Index: trunk/extensions/DeletedContributions/DeletedContributions_body.php |
— | — | @@ -1,8 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | 4 | * Extension based on SpecialContributions for arhived revisions |
5 | | - * Modifications made to SpecialContributions.php by Aaron Schulz |
6 | | - * Key code snipets from HideRevision.php also modified for use here |
7 | 5 | */ |
8 | 6 | |
9 | 7 | class DeletedContribsPager extends IndexPager { |