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:19:41 +0100 |
commit | 5e8da2b5c9d69872d17c857e239b1e30e9c23976 (patch) | |
tree | 6eb39b96d0243d141a3bafc93ff3d3504414ad18 /program/include | |
parent | 8bbb01cb66830cd20d3264d2ec78c911c48d270c (diff) |
Added toolbar button to move message in message view
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 17b5b9647..45cb9f0d9 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); } |