Correct css inclusion with minimizer

remotes/origin/stable45
Brice Maron 13 years ago
parent 1f06cdf81f
commit 06e20fe4b8
  1. 3
      lib/minimizer/css.php

@ -16,7 +16,7 @@ class OC_Minimizer_CSS extends OC_Minimizer
$in_root = false;
foreach(OC::$APPSROOTS as $app_root) {
if(strpos($file, $app_root['path']) == 0) {
if(strpos($file, $app_root['path']) === 0) {
$in_root = $webroot.$app_root['url'];
break;
}
@ -33,7 +33,6 @@ class OC_Minimizer_CSS extends OC_Minimizer
if (!defined('DEBUG') || !DEBUG){
$css_out = CSSMin::minify($css_out);
}
// die();
return $css_out;
}
}

Loading…
Cancel
Save