Correct css inclusion with minimizer

This commit is contained in:
Brice Maron 2012-06-22 15:20:18 +02:00
parent 1f06cdf81f
commit 06e20fe4b8

View file

@ -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;
}
}