From f14b76f06bc4c78bb4e5d7772dab4abcee5c04b1 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Tue, 8 Jun 2010 06:49:06 +0000 Subject: [PATCH] Line ending fixes for r67320. --- maintenance/updateDoubleWidthSearch.php | 2 +- maintenance/updateSearchIndex.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/maintenance/updateDoubleWidthSearch.php b/maintenance/updateDoubleWidthSearch.php index 83944c2538..bf831529f7 100644 --- a/maintenance/updateDoubleWidthSearch.php +++ b/maintenance/updateDoubleWidthSearch.php @@ -44,7 +44,7 @@ class UpdateDoubleWidthSearch extends Maintenance { $dbw = wfGetDB( DB_MASTER ); if ( $dbw->getType() !== 'mysql' ) { - $this->output( "This change is only needed on MySQL, quitting..." ); + $this->output( "This change is only needed on MySQL, quitting.\n" ); exit( 1 ); } diff --git a/maintenance/updateSearchIndex.php b/maintenance/updateSearchIndex.php index f58d22d36d..bf1b0d3e02 100644 --- a/maintenance/updateSearchIndex.php +++ b/maintenance/updateSearchIndex.php @@ -69,10 +69,10 @@ class UpdateSearchIndex extends Maintenance { fwrite( $file, $end ); fclose( $file ); } else { - $this->output( "*** Couldn't write to the $posFile!" ); + $this->output( "*** Couldn't write to the $posFile!\n" ); } } else { - $this->output( "*** Couldn't write to the $posFile!" ); + $this->output( "*** Couldn't write to the $posFile!\n" ); } } -- 2.20.1