Index: trunk/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 | +0.15.3 - 12 January 2010 |
| 6 | + Now using $wgExtensionAssetsPath for the path to Configure.js/.css. |
| 7 | + |
5 | 8 | 0.15.2 - 5 January 2010 |
6 | 9 | scripts/writePHP.php now uses NS_FILE and NS_FILE_TALK rather than NS_IMAGE |
7 | 10 | and NS_IMAGE_TALK |
Index: trunk/extensions/Configure/specials/ConfigurationPage.php |
— | — | @@ -896,12 +896,12 @@ |
897 | 897 | * Inject JavaScripts and Stylesheets in page output |
898 | 898 | */ |
899 | 899 | protected function injectScriptsAndStyles() { |
900 | | - global $wgOut, $wgScriptPath, $wgConfigureStyleVersion, $wgConfigureAddJsVariables; |
| 900 | + global $wgOut, $wgExtensionAssetsPath, $wgConfigureStyleVersion, $wgConfigureAddJsVariables; |
901 | 901 | |
902 | 902 | $wgConfigureAddJsVariables = true; // tell efConfigureMakeGlobalVariablesScript() to add JS variables |
903 | 903 | |
904 | | - $wgOut->addExtensionStyle( "{$wgScriptPath}/extensions/Configure/Configure.css?{$wgConfigureStyleVersion}" ); |
905 | | - $wgOut->addScriptFile( "{$wgScriptPath}/extensions/Configure/Configure.js?{$wgConfigureStyleVersion}" ); |
| 904 | + $wgOut->addExtensionStyle( "{$wgExtensionAssetsPath}/Configure/Configure.css?{$wgConfigureStyleVersion}" ); |
| 905 | + $wgOut->addScriptFile( "{$wgExtensionAssetsPath}/Configure/Configure.js?{$wgConfigureStyleVersion}" ); |
906 | 906 | } |
907 | 907 | |
908 | 908 | /** |
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.15.2', |
| 22 | + 'version' => '0.15.3', |
23 | 23 | ); |
24 | 24 | |
25 | 25 | # Configuration part |