From fd4ce712bc33d032a4b254e30d4abf753b98cad2 Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Wed, 14 Jul 2010 22:44:19 +0000 Subject: [PATCH] re r67320: output a newline if we switch from channeled to unchanneled output --- maintenance/Maintenance.php | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/Maintenance.php b/maintenance/Maintenance.php index 9a987bfc1f..6433296ff0 100644 --- a/maintenance/Maintenance.php +++ b/maintenance/Maintenance.php @@ -226,6 +226,7 @@ abstract class Maintenance { } if ( $channel === null ) { $f = fopen( 'php://stdout', 'w' ); + if ( $this->lastChannel !== null ) fwrite( $f, "\n" ); fwrite( $f, $out ); fclose( $f ); } -- 2.20.1