Index: trunk/extensions/CentralAuth/CentralAuth.php |
— | — | @@ -270,6 +270,13 @@ |
271 | 271 | // Though, doing it this way, AntiSpoof has to be loaded/included first |
272 | 272 | // I guess this is bug 30234 |
273 | 273 | if ( MWInit::classExists( 'AntiSpoof' ) ) { |
| 274 | + $wgExtensionCredits['antispam'][] = array( |
| 275 | + 'path' => __FILE__, |
| 276 | + 'name' => 'AntiSpoof for CentralAuth', |
| 277 | + 'url' => 'https://www.mediawiki.org/wiki/Extension:AntiSpoof', |
| 278 | + 'author' => 'Sam Reed', |
| 279 | + 'descriptionmsg' => 'centralauth-antispoof-desc', |
| 280 | + ); |
274 | 281 | $wgAutoloadClasses['CentralAuthSpoofUser'] = "$caBase/AntiSpoof/CentralAuthSpoofUser.php"; |
275 | 282 | $wgAutoloadClasses['CentralAuthAntiSpoofHooks'] = "$caBase/AntiSpoof/CentralAuthAntiSpoofHooks.php"; |
276 | 283 | |
Index: trunk/extensions/CentralAuth/CentralAuth.i18n.php |
— | — | @@ -16,6 +16,7 @@ |
17 | 17 | 'mergeaccount' => 'Login unification status', |
18 | 18 | 'centralauth-groupname' => 'the Wikimedia Foundation', |
19 | 19 | 'centralauth-desc' => '[[Special:MergeAccount|Merge account]] across wikis of {{int:Centralauth-groupname}}', |
| 20 | + 'centralauth-antispoof-desc' => 'Adds AntiSpoof technology to CentralAuth', |
20 | 21 | 'centralauth-mergeaccount-desc' => '[[Special:MergeAccount|Merges multiple accounts]] for Single User Login', |
21 | 22 | 'centralauth-merge-denied' => 'Sorry, you do not have permission to access this page.', |
22 | 23 | 'centralauth-merge-notlogged' => 'Please <span class="plainlinks">[$1 log in]</span> to check if your accounts have been fully merged.', |
— | — | @@ -405,6 +406,7 @@ |
406 | 407 | 'mergeaccount' => 'Title of special page "MergeAccount".', |
407 | 408 | 'centralauth-groupname' => 'Used within {{msg-mw|centralauth-incomplete-text}} and {{msg-mw|centralauth-login-progress}}.', |
408 | 409 | 'centralauth-desc' => '{{desc}}', |
| 410 | + 'centralauth-desc' => '{{desc}}', |
409 | 411 | 'centralauth-mergeaccount-desc' => 'Description of the special page [[Special:MergeAccount]]', |
410 | 412 | 'centralauth-merge-step1-submit' => "Submit button for 'Begin Login Unification', first step for creating a global user account.", |
411 | 413 | 'centralauth-complete' => 'Title of special page "MergeAccount"', |
Index: trunk/extensions/AntiSpoof/AntiSpoof.php |
— | — | @@ -3,7 +3,7 @@ |
4 | 4 | exit( 1 ); |
5 | 5 | } |
6 | 6 | |
7 | | -$wgExtensionCredits[version_compare($wgVersion, '1.17alpha', '>=') ? 'antispam' : 'other'][] = array( |
| 7 | +$wgExtensionCredits['antispam'][] = array( |
8 | 8 | 'path' => __FILE__, |
9 | 9 | 'name' => 'AntiSpoof', |
10 | 10 | 'url' => 'https://www.mediawiki.org/wiki/Extension:AntiSpoof', |