mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
MDL-65708 output: Get a base config from Boost
As a part of the removal of bootstrapbase & clean I removed some logic that got the base config of bootstrapbase, this should of been changed to get boosts config. See: e00f1c663c1
This commit is contained in:
parent
383aec8a01
commit
4028ffd8f6
@ -739,7 +739,11 @@ class theme_config {
|
||||
$this->name = $config->name;
|
||||
$this->dir = $config->dir;
|
||||
|
||||
$baseconfig = $config;
|
||||
if ($this->name != self::DEFAULT_THEME) {
|
||||
$baseconfig = self::find_theme_config(self::DEFAULT_THEME, $this->settings);
|
||||
} else {
|
||||
$baseconfig = $config;
|
||||
}
|
||||
|
||||
$configurable = array(
|
||||
'parents', 'sheets', 'parents_exclude_sheets', 'plugins_exclude_sheets', 'usefallback',
|
||||
|
Loading…
x
Reference in New Issue
Block a user