Followup r63389: remove useless CACHE_DB and confusing CACHE_ANYTHING from cache...
authorChad Horohoe <demon@users.mediawiki.org>
Thu, 1 Jul 2010 13:43:05 +0000 (13:43 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Thu, 1 Jul 2010 13:43:05 +0000 (13:43 +0000)
includes/installer/Installer.i18n.php
includes/installer/WebInstaller.php

index d624532..ab9a0c3 100644 (file)
@@ -406,8 +406,6 @@ Medium to large sites are highly encouraged to enable this, and small sites will
 No functionality is removed, but speed may be impacted.',
        'config-cache-accel'              => 'PHP object caching (APC, eAccelerator, XCache or WinCache)',
        'config-cache-memcached'          => 'Use Memcached (requires additional setup and configuration)',
-       'config-cache-db'                 => 'Cache data into the database',
-       'config-cache-anything'           => 'MediaWiki will attempt to cache data anywhere possible, except in Memcached, unless indicated explicitely',
        'config-memcached-servers'        => 'Memcached servers:',
        'config-memcached-help'           => 'List of IP addresses to use for Memcached.
 Should be separated with commas and specify the port to be used (for example: 1.2.3.4:56, 7.8.9.10:11).',
index 7d81de9..5b17d0b 100644 (file)
@@ -1406,8 +1406,7 @@ class WebInstaller_Options extends WebInstallerPage {
                        $this->parent->getFieldsetEnd()
                );
 
-               $caches = array( 'none', 'anything', 'db' );
-               $selected = 'db';
+               $caches = array( 'none' );
                if( count( $this->getVar( '_Caches' ) ) ) {
                        $caches[] = 'accel';
                        $selected = 'accel';