X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fdebug%2Fclass_DebugConsoleOutput.php;h=1c04fd784a1298f8157f741e6ea7534d19f520f5;hp=ed74c51394d52f67270e3d6cfda34e431d75fb51;hb=f5cf5211620c1813c76d8231819b63a585fb2689;hpb=6afa552b9bdcb28975cb1b28a247347284995424 diff --git a/inc/classes/main/debug/class_DebugConsoleOutput.php b/inc/classes/main/debug/class_DebugConsoleOutput.php index ed74c513..1c04fd78 100644 --- a/inc/classes/main/debug/class_DebugConsoleOutput.php +++ b/inc/classes/main/debug/class_DebugConsoleOutput.php @@ -52,9 +52,9 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output * @param $stripTags Whether HTML tags shall be stripped out * @return void */ - public final function outputStream ($output, $stripTags = false) { + public final function outputStream ($output, $stripTags = FALSE) { // Strip HTML tags out? - if ($stripTags === true) { + if ($stripTags === TRUE) { // Prepare the output without HTML tags $output = trim(html_entity_decode(strip_tags(stripslashes($output)))); } else { @@ -79,9 +79,9 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output * @param $stripTags Whether HTML tags shall be stripped out * @return void */ - public final function output ($outStream = false, $stripTags = false) { + public final function output ($outStream = FALSE, $stripTags = FALSE) { // Empty output will be silently ignored - if ($outStream !== false) { + if ($outStream !== FALSE) { $this->outputStream($outStream, $stripTags); } // END - if }