Completed
Push — master ( 62ce42...97b867 )
by Baris
05:09 queued 02:46
created
apps/default.app/application.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,10 +46,10 @@
 block discarded – undo
46 46
 $output = $application->handle()->getContent();
47 47
 
48 48
 // HTML Minification
49
-if ( $appConfig->html_minify ) {
50
-    ob_start( function() use ($output) {
51
-        $search = array( '/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s' );
52
-        $replace = array( '>', '<', '\\1' );
49
+if ($appConfig->html_minify) {
50
+    ob_start(function() use ($output) {
51
+        $search = array('/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s');
52
+        $replace = array('>', '<', '\\1');
53 53
         $buffer = preg_replace($search, $replace, $output);
54 54
         return $buffer;
55 55
     });
Please login to merge, or discard this patch.