Revert "MDL-47395 added cli_error() visual cue"
authorSam Hemelryk <sam@moodle.com>
Thu, 2 Oct 2014 04:39:49 +0000 (17:39 +1300)
committerSam Hemelryk <sam@moodle.com>
Thu, 2 Oct 2014 04:39:49 +0000 (17:39 +1300)
lib/clilib.php

index 64c837e..32272de 100644 (file)
@@ -171,7 +171,7 @@ function cli_problem($text) {
  * @return void (does not return)
  */
 function cli_error($text, $errorcode=1) {
-    fwrite(STDERR, "\xE2\x9D\x8C ". $text);
+    fwrite(STDERR, $text);
     fwrite(STDERR, "\n");
     die($errorcode);
 }