diff options
author | Chad Horohoe <demon@users.mediawiki.org> | 2010-12-14 13:37:53 +0000 |
---|---|---|
committer | Chad Horohoe <demon@users.mediawiki.org> | 2010-12-14 13:37:53 +0000 |
commit | 147cb86290d74bdf00c33665a3f33b873c2edf85 (patch) | |
tree | 6bb80d1a949582f797d357d7e62f0359fb17bdde /maintenance/updateSearchIndex.php | |
parent | f90ee48a0a34a7b3c99e97ca462ab62f35306cf4 (diff) | |
download | mediawikicore-147cb86290d74bdf00c33665a3f33b873c2edf85.tar.gz mediawikicore-147cb86290d74bdf00c33665a3f33b873c2edf85.zip |
Cleanup for r63578: Use Maintenance::error(), that's what its for
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/78378
Diffstat (limited to 'maintenance/updateSearchIndex.php')
-rw-r--r-- | maintenance/updateSearchIndex.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maintenance/updateSearchIndex.php b/maintenance/updateSearchIndex.php index eede10934c35..6de3ced6269c 100644 --- a/maintenance/updateSearchIndex.php +++ b/maintenance/updateSearchIndex.php @@ -70,10 +70,10 @@ class UpdateSearchIndex extends Maintenance { fwrite( $file, $end ); fclose( $file ); } else { - $this->output( "*** Couldn't write to the $posFile!\n" ); + $this->error( "*** Couldn't write to the $posFile!\n" ); } } else { - $this->output( "*** Couldn't write to the $posFile!\n" ); + $this->error( "*** Couldn't write to the $posFile!\n" ); } } |