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/settings/func.inc | |
parent | 4ca72140858e0b16fbfcba9042dd32f2465dc6d1 (diff) |
Support HTML entities in addressbook names
Diffstat (limited to 'program/steps/settings/func.inc')
-rw-r--r-- | program/steps/settings/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index 59b4e3735..4f8da1350 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -667,7 +667,7 @@ function rcmail_user_prefs($current=null) $select_abook = new html_select(array('name' => '_default_addressbook', 'id' => $field_id)); foreach ($books as $book) { - $select_abook->add($book['name'], $book['id']); + $select_abook->add(html_entity_decode($book['name'], ENT_COMPAT, 'UTF-8'), $book['id']); } $blocks['main']['options']['default_addressbook'] = array( |