X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fclasses%2Fmain%2Foutput%2Fclass_ConsoleOutput.php;h=6e0e164d2e4fc7f3f05e62d5054567def77dc672;hb=fdc6a02b5e6c2155cda61fcc345c7583b734ab85;hp=9545ef06a66a3a74dde7a6316b4425026ee15922;hpb=607a11e2c22949ea0647568c17d62a605595e83b;p=core.git diff --git a/inc/classes/main/output/class_ConsoleOutput.php b/inc/classes/main/output/class_ConsoleOutput.php index 9545ef06..6e0e164d 100644 --- a/inc/classes/main/output/class_ConsoleOutput.php +++ b/inc/classes/main/output/class_ConsoleOutput.php @@ -3,11 +3,11 @@ * This class simply puts text without any HTML code out. This class is suiable * for console output * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -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; } }