From 62766be90d13f0512dae97ec91a998d387a2e9df Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Thu, 19 Aug 2010 11:32:01 +0000 Subject: [PATCH] Followup r54225 Adding $u->doUpdate(); after $u = new SearchUpdate( $row->rc_cur_id, $title, false ); Seems to make sense, otherwise the function doesn't seem to do a great deal! --- maintenance/updateSearchIndex.php | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/updateSearchIndex.php b/maintenance/updateSearchIndex.php index bf1b0d3e02..e47eb69116 100644 --- a/maintenance/updateSearchIndex.php +++ b/maintenance/updateSearchIndex.php @@ -109,6 +109,7 @@ class UpdateSearchIndex extends Maintenance { $title = $titleObj->getPrefixedDBkey(); $this->output( "$title..." ); $u = new SearchUpdate( $row->rc_cur_id, $title, false ); + $u->doUpdate(); $this->output( "\n" ); } elseif ( $row->rc_type !== RC_LOG ) { $this->updateSearchIndexForPage( $dbw, $row->rc_cur_id ); -- 2.20.1