]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/output/debug/web/class_DebugWebOutput.php
Continued:
[core.git] / framework / main / classes / output / debug / web / class_DebugWebOutput.php
index 930ff9e69324845518c7f064d0f8151b46fc118b..68dc7ae1e13ae294f50d1bfa8ac23fda0467e03d 100644 (file)
@@ -62,9 +62,9 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer
         * @return      void
         */
        public final function outputStream ($output, $stripTags = false) {
-               // Strip out <br />
+               // Strip out any <br />
                $output = str_replace('<br />', '', $output);
-               print(stripslashes($output)."<br />\n");
+               printf('<!-- %s -->' . PHP_EOL, stripslashes($output));
        }
 
        /**