From 0620bb65b04d63b31b36a5c251781fea65993a72 Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Sat, 7 Nov 2009 20:55:57 +0000 Subject: [PATCH] Now that rebuildtextindex.php is not MySQL-only, rebuildall.php should also take it into account --- maintenance/rebuildall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/rebuildall.php b/maintenance/rebuildall.php index 6b3c333e54..a2c1be931b 100644 --- a/maintenance/rebuildall.php +++ b/maintenance/rebuildall.php @@ -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(); -- 2.20.1