]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/debug/class_DebugWebOutput.php
A lot debug messages removed, mailer with stubs added, resend link basicly finished...
[shipsimu.git] / inc / classes / main / debug / class_DebugWebOutput.php
index 48c9aade9deee131ad4bb1aca0b42b005c96a93b..9c366b6a6022785e778c418d817031a175169967 100644 (file)
@@ -58,7 +58,9 @@ class DebugWebOutput extends BaseFrameworkSystem implements Debugger, OutputStre
         * @return      void
         */
        public final function outputStream ($output) {
-               print($output);
+               // Strip out <br />
+               $output = str_replace("<br />", "", $output);
+               print($output."<br />\n");
        }
 
        /**