Missing line break
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 6 Jun 2010 13:31:44 +0000 (13:31 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 6 Jun 2010 13:31:44 +0000 (13:31 +0000)
maintenance/checkSyntax.php

index a28f055..d70545f 100644 (file)
@@ -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 ) {