Skip to content

Commit

Permalink
Dev: actually write the found inherited value instead of just storing…
Browse files Browse the repository at this point in the history
… it in a local variable
  • Loading branch information
ptelu committed Jun 12, 2023
1 parent ceb569c commit 0bc1d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/TemplateConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ protected function setOptionInheritance()

if (!empty($oOptions)) {
foreach ($oOptions as $sKey => $sOption) {
$oOptions->$sKey = $this->getOptionKey($sKey);
$this->oOptions->$sKey = $this->getOptionKey($sKey,);
}
}
}
Expand Down

0 comments on commit 0bc1d54

Please sign in to comment.