Now that rebuildtextindex.php is not MySQL-only, rebuildall.php should also take...
authorMax Semenik <maxsem@users.mediawiki.org>
Sat, 7 Nov 2009 20:55:57 +0000 (20:55 +0000)
committerMax Semenik <maxsem@users.mediawiki.org>
Sat, 7 Nov 2009 20:55:57 +0000 (20:55 +0000)
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();