aboutsummaryrefslogtreecommitdiffstats
path: root/include/template.class.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2012-01-11 05:34:41 +0000
committerrvelices <rv-github@modusoptimus.com>2012-01-11 05:34:41 +0000
commit511cbb1c981d77d3adc21c6de279d7afd5f07e94 (patch)
treec408d2f0abc065a0bd0efa950f2c18c745e2ccec /include/template.class.php
parentcf8155ddd6760f9f9df9f81ef8cff214b563352b (diff)
bug 2544 upgrade css minifier to version 3.0.1 (Embedded cssmin is imcompatible with font-face syntax)
git-svn-id: http://piwigo.org/svn/trunk@12874 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/template.class.php')
-rw-r--r--include/template.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/template.class.php b/include/template.class.php
index a7a7d9124..b6d1aa4ba 100644
--- a/include/template.class.php
+++ b/include/template.class.php
@@ -1299,7 +1299,7 @@ final class FileCombiner
{
$css = self::process_css_rec($file);
require_once(PHPWG_ROOT_PATH.'include/cssmin.class.php');
- $css = CssMin::minify($css, array('emulate-css3-variables'=>false));
+ $css = CssMin::minify($css, array('Variables'=>false));
$css = trigger_event('combined_css_postfilter', $css);
return $css;
}