diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-13 14:19:41 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-13 14:20:39 +0100 |
commit | 59865f3259753248ce39b6a463bf954a6d84a89b (patch) | |
tree | c8915cb962259b44b193091bf6ed6a4c57c1a90e /program/include | |
parent | dc52ae0b02caa379a16715cba1554b2494498cb7 (diff) |
Added toolbar button to move message in message view
Conflicts:
CHANGELOG
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 4df755985..0af7fab3b 100644 --- a/program/include/rcmail_output_html.php +++ b/program/include/rcmail_output_html.php @@ -1216,7 +1216,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($link_attrib, array('data-*'))); $out = sprintf('<a%s>%s</a>', $attrib_str, $btn_content); } |