Merge branch 'MDL-65904-master' of git://github.com/merrill-oakland/moodle

This commit is contained in:
Jake Dallimore 2019-06-19 14:56:11 +08:00
commit 1d73e8c3be

View File

@ -1549,7 +1549,7 @@ class theme_config {
* @return string Return compiled css.
*/
public function get_precompiled_css_content() {
$configs = [$this] + $this->parent_configs;
$configs = array_reverse($this->parent_configs) + [$this];
$css = '';
foreach ($configs as $config) {