]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/debug/class_DebugWebOutput.php
Fixed (again) some more generic array handling
[core.git] / inc / classes / main / debug / class_DebugWebOutput.php
index 7ffe5b55e01fbf63ba5f8b17875b7f1dbd93f7c6..b851abac8816cd18b05bacf9e9efc1a25c24fd6a 100644 (file)
@@ -54,7 +54,7 @@ class DebugWebOutput extends BaseFrameworkSystem implements Debugger, OutputStre
         */
        public final function outputStream ($output, $stripTags = FALSE) {
                // Strip out <br />
-               $output = str_replace("<br />", '', $output);
+               $output = str_replace('<br />', '', $output);
                print(stripslashes($output)."<br />\n");
        }