Now that rebuildtextindex.php is not MySQL-only, rebuildall.php should also take...
[lhc/web/wiklou.git] / maintenance / rebuildall.php
index 6b3c333..a2c1be9 100644 (file)
@@ -32,7 +32,7 @@ class RebuildAll extends Maintenance {
        public function execute() {
                global $wgDBtype;
                // Rebuild the text index
-               if ( $wgDBtype == 'mysql' ) {
+               if ( $wgDBtype != 'postgres' ) {
                        $this->output( "** Rebuilding fulltext search index (if you abort this will break searching; run this script again to fix):\n" );
                        $rebuildText = $this->runChild( 'RebuildTextIndex', 'rebuildtextindex.php' );
                        $rebuildText->execute();