mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Process entities returned along with row data in all cases
This commit is contained in:
parent
0fa6386b1c
commit
c20029dfd6
@ -472,6 +472,16 @@ class etemplate_widget_nextmatch extends etemplate_widget
|
||||
}
|
||||
elseif(!is_numeric($n)) // rows with string-keys, after numeric rows
|
||||
{
|
||||
if($n == 'sel_options')
|
||||
{
|
||||
foreach($row as $name => &$options)
|
||||
{
|
||||
foreach($options as $key => &$label)
|
||||
{
|
||||
$label = html_entity_decode($label, ENT_NOQUOTES,'utf-8');
|
||||
}
|
||||
}
|
||||
}
|
||||
$rows[$n] = $row;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user