Skip to content
Snippets Groups Projects
Commit 06e20fe4 authored by Brice Maron's avatar Brice Maron
Browse files

Correct css inclusion with minimizer

parent 1f06cdf8
Branches
No related tags found
No related merge requests found
......@@ -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;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment