From: Chad Horohoe Date: Tue, 7 Dec 2010 20:03:54 +0000 (+0000) Subject: Logic error from r77999 X-Git-Tag: 1.31.0-rc.0~33468 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=0c143006605be375130a692d0be56a1eecc7c836;p=lhc%2Fweb%2Fwiklou.git Logic error from r77999 --- 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' ); } }