Skip to content

Commit

Permalink
Merge pull request #644 from joomlatools/feature/643-template
Browse files Browse the repository at this point in the history
Template cache no longer working
  • Loading branch information
johanjanssens authored Apr 11, 2021
2 parents 7c39e56 + f19a6c2 commit e6c747b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ protected function _bootstrapSite($path, $config = array())

//Set config options
foreach($options['identifiers'] as $identifier => $values) {
$this->getConfig($identifier)->append($values);
$this->getConfig($identifier)->merge($values);
}

//Set config options
foreach($options['extensions'] as $identifier => $values) {
$this->getConfig($identifier)->append($values);
$this->getConfig($identifier)->merge($values);
}
}

Expand Down Expand Up @@ -144,7 +144,7 @@ protected function _bootstrapExtensions($path, $config = array())
if(is_array($identifiers))
{
foreach($identifiers as $identifier => $values) {
$this->getConfig($identifier)->append($values);
$this->getConfig($identifier)->merge($values);
}
}
}
Expand Down

0 comments on commit e6c747b

Please sign in to comment.