Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. Localisation updates are done |
3 | 3 | through translatewiki.net and are not listed here. |
4 | 4 | |
| 5 | +0.16.3 - 3 March 2011 |
| 6 | + Updated the extension to work with the current development version. |
| 7 | + |
5 | 8 | 0.16.2 - 2 March 2011 |
6 | 9 | * Added $wgUseCombinedLoginLink, $wgResourceLoaderMinifyJSVerticalSpace, |
7 | 10 | $wgEnableSelenium, $wgSeleniumConfigFile, $wgDBtestuser, $wgDBtestpassword, |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ), |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.16.2', |
| 21 | + 'version' => '0.16.3', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |
Index: trunk/extensions/Configure/handler/HandlerDb.php |
— | — | @@ -15,7 +15,9 @@ |
16 | 16 | public function __construct() { |
17 | 17 | global $IP, $wgConfigureDatabase; |
18 | 18 | require_once( "$IP/includes/GlobalFunctions.php" ); |
19 | | - require_once( "$IP/includes/ObjectCache.php" ); |
| 19 | + if ( file_exists( "$IP/includes/ObjectCache.php" ) ) { |
| 20 | + require_once( "$IP/includes/ObjectCache.php" ); |
| 21 | + } |
20 | 22 | $this->mDb = $wgConfigureDatabase; |
21 | 23 | } |
22 | 24 | |