r83169 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r83168‎ | r83169 | r83170 >
Date:20:08, 3 March 2011
Author:ialex
Status:deferred
Tags:
Comment:
Updated the extension to work with the current development version.
Modified paths:
  • /trunk/extensions/Configure/CHANGELOG (modified) (history)
  • /trunk/extensions/Configure/Configure.php (modified) (history)
  • /trunk/extensions/Configure/handler/HandlerDb.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Configure/CHANGELOG
@@ -1,6 +1,9 @@
22 This file lists changes on this extension. Localisation updates are done
33 through translatewiki.net and are not listed here.
44
 5+0.16.3 - 3 March 2011
 6+ Updated the extension to work with the current development version.
 7+
58 0.16.2 - 2 March 2011
69 * Added $wgUseCombinedLoginLink, $wgResourceLoaderMinifyJSVerticalSpace,
710 $wgEnableSelenium, $wgSeleniumConfigFile, $wgDBtestuser, $wgDBtestpassword,
Index: trunk/extensions/Configure/Configure.php
@@ -17,7 +17,7 @@
1818 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ),
1919 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure',
2020 'descriptionmsg' => 'configure-desc',
21 - 'version' => '0.16.2',
 21+ 'version' => '0.16.3',
2222 );
2323
2424 # Configuration part
Index: trunk/extensions/Configure/handler/HandlerDb.php
@@ -15,7 +15,9 @@
1616 public function __construct() {
1717 global $IP, $wgConfigureDatabase;
1818 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+ }
2022 $this->mDb = $wgConfigureDatabase;
2123 }
2224

Status & tagging log