X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=a8f51fe34ead180e40da45339b3224717b44a0f4;hb=736820f8f2dc6bcf63d524612db90e7e9427aa98;hp=f79945265328a8498621f752e82cb0c25612c159;hpb=2117c11cbc53911f3a34fbd15d706367515ef7e1;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index f799452653..a8f51fe34e 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1319,6 +1319,8 @@ unset( $serverName ); # Don't leak local variables to global scope /** * Password reminder name + * + * @deprecated since 1.23; use the system message 'emailsender' instead. */ $wgPasswordSenderName = 'MediaWiki Mail'; @@ -1943,9 +1945,6 @@ $wgCacheDirectory = false; * - CACHE_DB: Store cache objects in the DB * - CACHE_MEMCACHED: MemCached, must specify servers in $wgMemCachedServers * - CACHE_ACCEL: APC, XCache or WinCache - * - CACHE_DBA: Use PHP's DBA extension to store in a DBM-style - * database. This is slow, and is not recommended for - * anything other than debugging. * - (other): A string may be used which identifies a cache * configuration in $wgObjectCaches. * @@ -1998,15 +1997,10 @@ $wgLanguageConverterCacheType = CACHE_ANYTHING; * the value is an associative array of parameters. The "class" parameter is the * class name which will be used. Alternatively, a "factory" parameter may be * given, giving a callable function which will generate a suitable cache object. - * - * The other parameters are dependent on the class used. - * - CACHE_DBA uses $wgTmpDirectory by default. The 'dir' parameter let you - * overrides that. */ $wgObjectCaches = array( CACHE_NONE => array( 'class' => 'EmptyBagOStuff' ), CACHE_DB => array( 'class' => 'SqlBagOStuff', 'table' => 'objectcache' ), - CACHE_DBA => array( 'class' => 'DBABagOStuff' ), CACHE_ANYTHING => array( 'factory' => 'ObjectCache::newAnything' ), CACHE_ACCEL => array( 'factory' => 'ObjectCache::newAccelerator' ), @@ -2026,12 +2020,6 @@ $wgObjectCaches = array( */ $wgParserCacheExpireTime = 86400; -/** - * Select which DBA handler - * to use as CACHE_DBA backend. - */ -$wgDBAhandler = 'db3'; - /** * Deprecated alias for $wgSessionsInObjectCache. * @@ -4024,7 +4012,6 @@ $wgDefaultUserOptions = array( 'rclimit' => 50, 'rememberpassword' => 0, 'rows' => 25, - 'searchlimit' => 20, 'showhiddencats' => 0, 'shownumberswatching' => 1, 'showtoc' => 1,