MDL-38000 css: fixed handling of CSS files by outputlib.

This commit is contained in:
Sam Hemelryk
2013-02-19 13:48:26 +08:00
committed by Damyon Wiese
parent 5affcb30bc
commit c4a799ecde
+4 -3
View File
@@ -776,10 +776,12 @@ class theme_config {
protected function css_files_get_contents($file, array $keys, css_optimiser $optimiser = null) {
global $CFG;
if (is_array($file)) {
// We use a separate array to keep everything in the exact same order.
$return = array();
foreach ($file as $key=>$f) {
$file[$key] = $this->css_files_get_contents($f, array_merge($keys, array($key)), $optimiser);
$return[clean_param($key, PARAM_SAFEDIR)] = $this->css_files_get_contents($f, array_merge($keys, array($key)), $optimiser);
}
return $file;
return $return;
} else {
$contents = file_get_contents($file);
$contents = $this->post_process($contents);
@@ -867,7 +869,6 @@ class theme_config {
}
}
}
return $js;
}