From: Tim Starling Date: Tue, 8 Jun 2010 06:49:06 +0000 (+0000) Subject: Line ending fixes for r67320. X-Git-Tag: 1.31.0-rc.0~36589 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=f14b76f06bc4c78bb4e5d7772dab4abcee5c04b1;p=lhc%2Fweb%2Fwiklou.git Line ending fixes for r67320. --- 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" ); } }