mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
Merge branch 'MDL-56911-master' of git://github.com/ankitagarwal/moodle
This commit is contained in:
commit
e7b9ea226c
1 changed files with 7 additions and 6 deletions
|
@ -1513,6 +1513,13 @@ class theme_config {
|
|||
}
|
||||
}
|
||||
|
||||
// Now resolve all theme settings or do any other postprocessing.
|
||||
// This needs to be done before calling core parser, since the parser strips [[settings]] tags.
|
||||
$csspostprocess = $this->csspostprocess;
|
||||
if (function_exists($csspostprocess)) {
|
||||
$css = $csspostprocess($css, $this);
|
||||
}
|
||||
|
||||
// Post processing using an object representation of CSS.
|
||||
$hastreeprocessor = !empty($this->csstreepostprocessor) && function_exists($this->csstreepostprocessor);
|
||||
$needsparsing = $hastreeprocessor || !empty($this->rtlmode);
|
||||
|
@ -1534,12 +1541,6 @@ class theme_config {
|
|||
unset($csstree);
|
||||
}
|
||||
|
||||
// now resolve all theme settings or do any other postprocessing
|
||||
$csspostprocess = $this->csspostprocess;
|
||||
if (function_exists($csspostprocess)) {
|
||||
$css = $csspostprocess($css, $this);
|
||||
}
|
||||
|
||||
return $css;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue