mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 02:28:44 +02:00
🐛 N°1889 Portal: Wrong encoding of special chars like in dashlets (eg. "ö", "&", ...)
This commit is contained in:
@@ -893,7 +893,7 @@ class ManageBrickController extends BrickController
|
||||
$aGroupingTabsValues[$aDistinctResult['grouped_by_1']] = array(
|
||||
'value' => $aDistinctResult['grouped_by_1'],
|
||||
'label_html' => $sHtmlLabel,
|
||||
'label' => strip_tags($sHtmlLabel),
|
||||
'label' => strip_tags(html_entity_decode($sHtmlLabel, ENT_QUOTES, 'UTF-8')),
|
||||
'condition' => $oConditionQuery,
|
||||
'count' => $aDistinctResult['_itop_count_'],
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user