diff --git a/classes/Display/PHP.php b/classes/Display/PHP.php index 8592313..d457753 100644 --- a/classes/Display/PHP.php +++ b/classes/Display/PHP.php @@ -104,7 +104,7 @@ class Display_PHP extends Display_Common $buffer = ob_get_clean(); // Kills any whitespace and HTML comments - $buffer = preg_replace(array('/^[\s]+/m', '//U'), '', $buffer); + $buffer = preg_replace(array('/^[\s]+/m', '//U'), '', $buffer); // Note, this doesn't exit in case you want to run code after the display of the page echo $buffer; diff --git a/jar.php b/jar.php index 2353125..4851afa 100755 --- a/jar.php +++ b/jar.php @@ -2834,7 +2834,7 @@ class Display_PHP extends Display_Common $buffer = ob_get_clean(); // Kills any whitespace and HTML comments - $buffer = preg_replace(array('/^[\s]+/m', '//U'), '', $buffer); + $buffer = preg_replace(array('/^[\s]+/m', '//U'), '', $buffer); // Note, this doesn't exit in case you want to run code after the display of the page echo $buffer;