diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-09-20 15:46:11 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-09-20 15:46:11 +0200 |
commit | 5802cfec95fc05f5ccab2c85ab225ffeaf1e5874 (patch) | |
tree | 2c48f63f281f1549eb62f4a38b16aec40b92afd0 /program/steps/addressbook/func.inc | |
parent | 4ca72140858e0b16fbfcba9042dd32f2465dc6d1 (diff) |
Support HTML entities in addressbook names
Diffstat (limited to 'program/steps/addressbook/func.inc')
-rw-r--r-- | program/steps/addressbook/func.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/steps/addressbook/func.inc b/program/steps/addressbook/func.inc index 5f5fcc673..44d216c25 100644 --- a/program/steps/addressbook/func.inc +++ b/program/steps/addressbook/func.inc @@ -219,12 +219,13 @@ function rcmail_directory_list($attrib) if ($source['class_name']) $class_name .= ' ' . $source['class_name']; + $name = !empty($source['name']) ? html_entity_decode($source['name'], ENT_COMPAT, 'UTF-8') : $id; $out .= sprintf($line_templ, html_identifier($id), $class_name, Q(rcmail_url(null, array('_source' => $id))), $source['id'], - $js_id, (!empty($source['name']) ? Q($source['name']) : Q($id))); + $js_id, Q($name)); $groupdata = array('out' => $out, 'jsdata' => $jsdata, 'source' => $id); if ($source['groups']) |