From 7bf57a29b9e240834073e92a4088746dd20b593f Mon Sep 17 00:00:00 2001 From: Platonides Date: Tue, 15 Nov 2011 16:27:16 +0000 Subject: [PATCH] Follow-up r103179: $handled variable undefined --- maintenance/Maintenance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/Maintenance.php b/maintenance/Maintenance.php index c807c08a03..c4e672f1cb 100644 --- a/maintenance/Maintenance.php +++ b/maintenance/Maintenance.php @@ -391,7 +391,7 @@ abstract class Maintenance { $this->atLineStart = false; if ( $channel === null ) { // For unchanneled messages, output trailing newline immediately - if( $handle ) { + if( $cli ) { fwrite( STDOUT, "\n" ); } else { print "\n"; -- 2.20.1