From 0c143006605be375130a692d0be56a1eecc7c836 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Tue, 7 Dec 2010 20:03:54 +0000 Subject: [PATCH] Logic error from r77999 --- includes/installer/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/Installer.php b/includes/installer/Installer.php index 79c63b3342..f02dc11a58 100644 --- a/includes/installer/Installer.php +++ b/includes/installer/Installer.php @@ -390,7 +390,7 @@ abstract class Installer { $sqlite = $this->getDBInstaller( 'sqlite' ); if ( $sqlite->isCompiled() ) { $db = new DatabaseSqliteStandalone( ':memory:' ); - if( $db->getFulltextSearchModule() == 'FTS3' ) { + if( $db->getFulltextSearchModule() != 'FTS3' ) { $this->showMessage( 'config-no-fts3' ); } } -- 2.20.1