X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fclasses%2Foutput%2Fdebug%2Fweb%2Fclass_DebugWebOutput.php;h=930ff9e69324845518c7f064d0f8151b46fc118b;hp=4093172adf8973ef9635b03b0129d0d075894cb8;hb=b002c5909aa0f781505dde5414964b0f014cde01;hpb=78a010fef84895720e796842208f01dfb619c332 diff --git a/framework/main/classes/output/debug/web/class_DebugWebOutput.php b/framework/main/classes/output/debug/web/class_DebugWebOutput.php index 4093172a..930ff9e6 100644 --- a/framework/main/classes/output/debug/web/class_DebugWebOutput.php +++ b/framework/main/classes/output/debug/web/class_DebugWebOutput.php @@ -1,11 +1,12 @@ $output = str_replace('
', '', $output); print(stripslashes($output)."
\n"); @@ -73,9 +74,9 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer * @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 }