diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-09-21 10:11:49 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-09-21 10:11:49 +0200 |
commit | 824c1121e78e91e36953f241a02c94094c6ea21f (patch) | |
tree | c25acd368eda4524111139c2f1a2478f1cab46cd /program/steps/settings/func.inc | |
parent | 74e6cf2f58a663b50a9b443dd815e44451f7d770 (diff) | |
parent | 1b9923208c64f4d3494e185ac3d249df5fbb8552 (diff) |
Merge branch 'html_ent'
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( |