X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Foutput%2Fclass_ConsoleOutput.php;h=61b6f8ab42c382a369d683f6222da3a2beb0431b;hb=28469f41b28046e5478a8e2e111de73536317753;hp=3fc2bcc01f9a73e309ae7afd4dc8ba4bb1917623;hpb=768cc231b262ebeaa5aec373d9b7d97cc6b6ac95;p=core.git diff --git a/inc/classes/main/output/class_ConsoleOutput.php b/inc/classes/main/output/class_ConsoleOutput.php index 3fc2bcc0..61b6f8ab 100644 --- a/inc/classes/main/output/class_ConsoleOutput.php +++ b/inc/classes/main/output/class_ConsoleOutput.php @@ -5,7 +5,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -84,10 +84,11 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { * Output the code * * @param $outStream Something we shall sent to the console + * @param $stripTags Whether HTML tags shall be stripped out * @return void */ - public final function output ($outStream = false) { - print trim($outStream) . chr(10); + public final function output ($outStream = false, $stripTags = false) { + print trim($outStream) . PHP_EOL; } }