From: Chad Horohoe Date: Sun, 8 Aug 2010 15:30:40 +0000 (+0000) Subject: Remove OK message for SQLite search. Outputs as warning and is potentially confusing X-Git-Tag: 1.31.0-rc.0~35605 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28?a=commitdiff_plain;h=4df2ccbd75751d8641f615245b55ff3393187929;p=lhc%2Fweb%2Fwiklou.git Remove OK message for SQLite search. Outputs as warning and is potentially confusing --- diff --git a/includes/installer/Installer.i18n.php b/includes/installer/Installer.i18n.php index 4955e28fcb..ab77d592b2 100644 --- a/includes/installer/Installer.i18n.php +++ b/includes/installer/Installer.i18n.php @@ -275,7 +275,6 @@ Check the data directory and database name below and try again.', 'config-sqlite-cant-create-db' => 'Could not create database file $1.', 'config-sqlite-fts3-downgrade' => 'PHP is missing FTS3 support, downgrading tables', 'config-sqlite-fts3-add' => 'Adding FTS3 search capabilities', - 'config-sqlite-fts3-ok' => 'Full text search table appears to be in order', 'config-can-upgrade' => "There are MediaWiki tables in this database. To upgrade them to MediaWiki $1, click '''Continue'''.", 'config-upgrade-done' => "Upgrade complete. diff --git a/includes/installer/SqliteInstaller.php b/includes/installer/SqliteInstaller.php index 1c7ad48d16..b5dfb9cc03 100644 --- a/includes/installer/SqliteInstaller.php +++ b/includes/installer/SqliteInstaller.php @@ -180,10 +180,7 @@ class SqliteInstaller extends DatabaseInstaller { } elseif ( !$fts3tTable && $module == 'FTS3' ) { $status->warning( 'config-sqlite-fts3-add' ); $this->db->sourceFile( "$IP/maintenance/sqlite/archives/searchindex-fts3.sql" ); - } else { - $status->warning( 'config-sqlite-fts3-ok' ); } - return $status; }