diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-09-04 10:08:42 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-09-04 10:08:42 +0200 |
commit | 0933d66b591056358b5e645cbd563814308998d2 (patch) | |
tree | cd4025d234c04e615f357922669b09edd59da20a /program/include | |
parent | 80b3c6200ee7788bef1bca0562aa53113ffea9bd (diff) |
Keep current selection on IE browsers by adding unselectable=on to link elements
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcmail_output_html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail_output_html.php b/program/include/rcmail_output_html.php index a2ec29ca3..006b89c64 100644 --- a/program/include/rcmail_output_html.php +++ b/program/include/rcmail_output_html.php @@ -1171,7 +1171,7 @@ class rcmail_output_html extends rcmail_output // generate html code for button if ($btn_content) { - $attrib_str = html::attrib_string($attrib, $link_attrib); + $attrib_str = html::attrib_string($attrib, array_merge(html::$common_attrib, $link_attrib)); $out = sprintf('<a%s>%s</a>', $attrib_str, $btn_content); } |