Skip to content

Commit

Permalink
Fix: Values of a CSS group that contained HTML enitites were not sele…
Browse files Browse the repository at this point in the history
…cted again after saving
  • Loading branch information
doishub committed Jan 22, 2021
1 parent c1da62f commit 701de1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/contao/classes/StyleManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public static function deserializeValues($arrValue){
}
else
{
$arrValue[ $arrItem['id'] ] = $arrItem['value'];
$arrValue[ $arrItem['id'] ] = html_entity_decode($arrItem['value']);
}
}
}
Expand Down

0 comments on commit 701de1c

Please sign in to comment.