Skip to content

Commit

Permalink
MDL-65708 output: Get a base config from Boost
Browse files Browse the repository at this point in the history
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: e00f1c6
  • Loading branch information
Chocolate-lightning committed May 27, 2019
1 parent e39f3b7 commit 1f686d7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/outputlib.php
Expand Up @@ -739,7 +739,11 @@ private function __construct($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',
Expand Down

0 comments on commit 1f686d7

Please sign in to comment.