MDL-23590 fixed borked cli_problem
authorPetr Skoda <skodak@moodle.org>
Fri, 30 Jul 2010 14:15:03 +0000 (14:15 +0000)
committerPetr Skoda <skodak@moodle.org>
Fri, 30 Jul 2010 14:15:03 +0000 (14:15 +0000)
lib/clilib.php

index d33145c..b39de3f 100644 (file)
@@ -160,7 +160,7 @@ function cli_heading($string, $return=false) {
  * @return void
  */
 function cli_problem($text) {
-    fwrite(STDERR, $text"\n");
+    fwrite(STDERR, $text."\n");
 }
 
 /**