diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-09-21 10:11:05 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-09-21 10:11:05 +0200 |
commit | 1b9923208c64f4d3494e185ac3d249df5fbb8552 (patch) | |
tree | 2b5cad37cd1254acca6dee05a0ab7918e00d6cb4 /program/steps/addressbook/import.inc | |
parent | 2afd45dda078c35b43240a62569c73dc61739e81 (diff) |
Re-fix HTML entities handling in addressbook names
Diffstat (limited to 'program/steps/addressbook/import.inc')
-rw-r--r-- | program/steps/addressbook/import.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/addressbook/import.inc b/program/steps/addressbook/import.inc index 15e04b82a..fb2251f18 100644 --- a/program/steps/addressbook/import.inc +++ b/program/steps/addressbook/import.inc @@ -43,7 +43,7 @@ function rcmail_import_form($attrib) // addressbook selector if (count($writable_books) > 1) { - $select = new html_select(array('name' => '_target', 'id' => 'rcmimporttarget')); + $select = new html_select(array('name' => '_target', 'id' => 'rcmimporttarget', 'is_escaped' => true)); foreach ($writable_books as $book) $select->add($book['name'], $book['id']); |