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/edit.inc | |
parent | 2afd45dda078c35b43240a62569c73dc61739e81 (diff) |
Re-fix HTML entities handling in addressbook names
Diffstat (limited to 'program/steps/addressbook/edit.inc')
-rw-r--r-- | program/steps/addressbook/edit.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/program/steps/addressbook/edit.inc b/program/steps/addressbook/edit.inc index 90069a7eb..b216a7c70 100644 --- a/program/steps/addressbook/edit.inc +++ b/program/steps/addressbook/edit.inc @@ -244,11 +244,12 @@ function rcmail_source_selector($attrib) if (count($sources_list) < 2) { $source = $sources_list[$SOURCE_ID]; $hiddenfield = new html_hiddenfield(array('name' => '_source', 'value' => $SOURCE_ID)); - return html::span($attrib, Q($source['name']) . $hiddenfield->show()); + return html::span($attrib, $source['name'] . $hiddenfield->show()); } - $attrib['name'] = '_source'; - $attrib['onchange'] = JS_OBJECT_NAME . ".command('save', 'reload', this.form)"; + $attrib['name'] = '_source'; + $attrib['is_escaped'] = true; + $attrib['onchange'] = JS_OBJECT_NAME . ".command('save', 'reload', this.form)"; $select = new html_select($attrib); |