]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/output/debug/web/class_DebugWebOutput.php
Rewrite continued:
[core.git] / framework / main / classes / output / debug / web / class_DebugWebOutput.php
index 4093172adf8973ef9635b03b0129d0d075894cb8..f63c4d6fe61fdd80496d7ac6a74cb2c0133b9a68 100644 (file)
@@ -60,7 +60,7 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer
         * @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 out <br />
                $output = str_replace('<br />', '', $output);
                print(stripslashes($output)."<br />\n");
@@ -73,9 +73,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
        }