summaryrefslogtreecommitdiff
path: root/program/steps/mail/get.inc
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-12-22 16:40:20 +0100
committerThomas Bruederli <thomas@roundcube.net>2012-12-22 16:40:20 +0100
commit5f0bd1fcb40eae92e747e0e855b77639fd17fc4a (patch)
treeb43e5cd71cda5ba69cc036255b0fb41e76c4c9ae /program/steps/mail/get.inc
parent090c49d4a3343d346677ed1687ae28697f5b1c6e (diff)
Make html button-links work in IE
Diffstat (limited to 'program/steps/mail/get.inc')
-rw-r--r--program/steps/mail/get.inc11
1 files changed, 5 insertions, 6 deletions
diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc
index 314a437e7..803716d61 100644
--- a/program/steps/mail/get.inc
+++ b/program/steps/mail/get.inc
@@ -166,12 +166,11 @@ else if (strlen($pid = get_input_value('_part', RCUBE_INPUT_GET))) {
'vars' => array('expected' => "$mimetype (.$file_extension)", 'detected' => "$real_mimetype (.$extensions[0])")
)) .
html::p('buttons',
- html::tag('button', null,
- html::a(array(
- 'href' => $RCMAIL->url(array_merge($_GET, array('_nocheck' => 1))),
- 'style' => 'text-decoration:none;color:#000',
- ), rcube_label('showanyway')))
- ))
+ html::a(array(
+ 'href' => $RCMAIL->url(array_merge($_GET, array('_nocheck' => 1))),
+ 'style' => 'text-decoration:none;color:#000',
+ ), html::tag('button', null, rcube_label('showanyway'))))
+ )
)));
exit;
}