Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,8 +1,14 @@ |
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 | +0.13.19 - 25 May 2009 |
| 6 | + * Added support for External Data, Semantic Forms, Semantic Drilldown, |
| 7 | + Semantic MediaWiki and Semantic Result Formats extensions |
| 8 | + * Hook added for Admin Links extension to add links to Configure's |
| 9 | + special pages |
| 10 | + |
5 | 11 | 0.13.18 - 16 May 2009 |
6 | | - Added support for AdminLinks extension. |
| 12 | + Added support for Admin Links extension. |
7 | 13 | |
8 | 14 | 0.13.17 - 6 May 2009 |
9 | 15 | Added support for Purge extension. |
Index: trunk/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.13.18', |
| 22 | + 'version' => '0.13.19', |
23 | 23 | ); |
24 | 24 | |
25 | 25 | # Configuration part |
— | — | @@ -216,6 +216,9 @@ |
217 | 217 | $wgHooks['FarmerAdminExtensions'][] = 'efConfigureFarmerAdminExtensions'; |
218 | 218 | $wgHooks['FarmerManageExtensions'][] = 'efConfigureFarmerManageExtensions'; |
219 | 219 | |
| 220 | +# For interaction with Admin Links extension |
| 221 | +$wgHooks['AdminLinks'][] = 'efConfigureAddToAdminLinks'; |
| 222 | + |
220 | 223 | # Handlers |
221 | 224 | $wgAutoloadClasses['ConfigureHandler'] = $dir . 'Configure.handler.php'; |
222 | 225 | $wgAutoloadClasses['ConfigureHandlerFiles'] = $dir . 'Configure.handler-files.php'; |