From 3e87ac3ab37c97328f2766847c242769700a719d Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 6 Jun 2010 13:31:44 +0000 Subject: [PATCH] Missing line break --- maintenance/checkSyntax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/checkSyntax.php b/maintenance/checkSyntax.php index a28f055a96..d70545f506 100644 --- a/maintenance/checkSyntax.php +++ b/maintenance/checkSyntax.php @@ -50,7 +50,7 @@ class CheckSyntax extends Maintenance { $useParseKit = function_exists( 'parsekit_compile_file' ) && version_compare( PHP_VERSION, '5.3', '<' ); $str = 'Checking syntax (using ' . ( $useParseKit ? - 'parsekit)' : ' php -l, this can take a long time)' ); + 'parsekit' : ' php -l, this can take a long time' ) . ")\n"; $this->output( $str ); foreach ( $this->mFiles as $f ) { if ( $useParseKit ) { -- 2.20.1