X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=69d4633c929d1c515fb510f5f21272fe37e703f5;hb=437a7ddf85d38683f82cfd43b5c5658459032d7d;hp=9b2b6762f4ce2731cab03b758fbb00d7dc55d6f0;hpb=88d829c4b1a1b7ba34c36f0939a0e78f18b0f0cb;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 9b2b6762f4..69d4633c92 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1945,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. * @@ -2000,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' ), @@ -2028,12 +2020,6 @@ $wgObjectCaches = array( */ $wgParserCacheExpireTime = 86400; -/** - * Select which DBA handler - * to use as CACHE_DBA backend. - */ -$wgDBAhandler = 'db3'; - /** * Deprecated alias for $wgSessionsInObjectCache. * @@ -3070,14 +3056,6 @@ $wgVectorUseIconWatch = true; */ $wgEdititis = false; -/** - * Better directionality support (bug 6100 and related). - * Removed in 1.18, still kept here for LiquidThreads backwards compatibility. - * - * @deprecated since 1.18 - */ -$wgBetterDirectionality = true; - /** * Some web hosts attempt to rewrite all responses with a 404 (not found) * status code, mangling or hiding MediaWiki's output. If you are using such a @@ -4026,7 +4004,6 @@ $wgDefaultUserOptions = array( 'rclimit' => 50, 'rememberpassword' => 0, 'rows' => 25, - 'searchlimit' => 20, 'showhiddencats' => 0, 'shownumberswatching' => 1, 'showtoc' => 1,