From 650083e3c056d4927aca2d68d10e726d359c8b6f Mon Sep 17 00:00:00 2001 From: Parziphal Date: Sat, 8 Feb 2014 20:35:15 -0500 Subject: [PATCH] Fixed issue #63. --- install.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.php b/install.php index 492f3dc..f7c12fc 100755 --- a/install.php +++ b/install.php @@ -103,6 +103,10 @@ $c->put("Compiling assets", null, Color::BLUE); Rails::assets()->setConsole($c); # Compile files +# CSS minifier Toopay/Assetic-Minifier uses /e modifier in its +# preg_replace() calls, which is deprecated as of PHP 5.5. Change +# error_reporting to avoid triggering the deprecation warning. +error_reporting(E_WARNING); Rails::assets()->compileAll(); $c->put("done");