Index: branches/REL1_16/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
| 5 | +1.16 branch-1 - 28 March 2010 |
| 6 | + Fixed $wgDnsBlacklistUrls' type. |
| 7 | + |
5 | 8 | 0.15.12 - 20 February 2010 |
6 | 9 | Added 'settings-file' option to $wgConfigureAdditionalExtensions. |
7 | 10 | |
Index: branches/REL1_16/extensions/Configure/settings/Settings-core.php |
— | — | @@ -727,7 +727,7 @@ |
728 | 728 | 'wgProxyWhitelist' => 'array', |
729 | 729 | 'wgSecretKey' => 'text', |
730 | 730 | 'wgEnableDnsBlacklist' => 'bool', |
731 | | - 'wgDnsBlacklistUrls' => 'text', |
| 731 | + 'wgDnsBlacklistUrls' => 'array', |
732 | 732 | ), |
733 | 733 | ), |
734 | 734 | 'squid' => array( |
— | — | @@ -914,6 +914,7 @@ |
915 | 915 | 'wgProxyList' => 'simple', |
916 | 916 | 'wgProxyPorts' => 'simple', |
917 | 917 | 'wgProxyWhitelist' => 'simple', |
| 918 | + 'wgDnsBlacklistUrls' => 'simple', |
918 | 919 | # Squid |
919 | 920 | 'wgSquidServers' => 'simple', |
920 | 921 | 'wgSquidServersNoPurge' => 'simple', |
Index: branches/REL1_16/extensions/Configure/Configure.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'description' => 'Allow authorised users to configure the wiki via a web-based interface', |
21 | 21 | 'descriptionmsg' => 'configure-desc', |
22 | | - 'version' => '0.15.12', |
| 22 | + 'version' => '0.15.12 (1.16 branch-1)', |
23 | 23 | ); |
24 | 24 | |
25 | 25 | # Configuration part |