Index: trunk/extensions/StableVersion/language/en.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | /** |
4 | 4 | * English language file for the 'StableVErsion' extension |
5 | 5 | */ |
Index: trunk/extensions/StableVersion/StableVersion.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | /** |
4 | 4 | * Run the following SQL on your database prior to use : |
5 | 5 | |
Index: trunk/extensions/Cache404/extensions/Cache404.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | /* Cache404.php -- an extension for doing 404-handler caching |
4 | 4 | * Copyright 2004 Evan Prodromou <evan@wikitravel.org> |
5 | 5 | * |
Index: trunk/extensions/staticwiki.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | /* |
4 | 4 | This extension will turn a MediaWiki installation into "import-only" mode, at least for the article namespace. |
5 | 5 | |
Index: trunk/extensions/ConfirmEdit/ConfirmEdit.php |
— | — | @@ -12,10 +12,11 @@ |
13 | 13 | |
14 | 14 | $wgExtensionFunctions[] = 'ceSetup'; |
15 | 15 | |
16 | | -$wgGroupPermissions['*' ]['skipcaptcha'] = false; |
17 | | -$wgGroupPermissions['user' ]['skipcaptcha'] = false; |
18 | | -$wgGroupPermissions['bot' ]['skipcaptcha'] = true; // registered bots |
19 | | -$wgGroupPermissions['sysop' ]['skipcaptcha'] = true; |
| 16 | +$wgGroupPermissions['*' ]['skipcaptcha'] = false; |
| 17 | +$wgGroupPermissions['user' ]['skipcaptcha'] = false; |
| 18 | +$wgGroupPermissions['autoconfirmed']['skipcaptcha'] = false; |
| 19 | +$wgGroupPermissions['bot' ]['skipcaptcha'] = true; // registered bots |
| 20 | +$wgGroupPermissions['sysop' ]['skipcaptcha'] = true; |
20 | 21 | |
21 | 22 | global $wgCaptcha, $wgCaptchaClass, $wgCaptchaTriggers; |
22 | 23 | $wgCaptcha = null; |
Index: trunk/extensions/ListChangedArticles.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | |
4 | 4 | # Not a valid entry point, skip unless MEDIAWIKI is defined |
5 | 5 | if (defined('MEDIAWIKI')) { |