diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-12-29 16:54:41 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-12-29 16:54:41 +0100 |
commit | d9f180adf9e1e8a63ea9bfdb534dc376a4829fee (patch) | |
tree | 22ae88c3ae1d505a3d89012741a4b45e8747a6fc /program/steps/mail/get.inc | |
parent | 6f3c97c5d32f93bb81b157bc4340fef8ee0b60ea (diff) |
Minor IE7/8 fixes
Diffstat (limited to 'program/steps/mail/get.inc')
-rw-r--r-- | program/steps/mail/get.inc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc index 37f728ebf..9d9032b6a 100644 --- a/program/steps/mail/get.inc +++ b/program/steps/mail/get.inc @@ -160,10 +160,9 @@ 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::a(array( - 'href' => $RCMAIL->url(array_merge($_GET, array('_nocheck' => 1))), - 'style' => 'text-decoration:none;color:#000', - ), html::tag('button', null, rcube_label('showanyway')))) + html::tag('button', + array('onclick' => "location.href='" . $RCMAIL->url(array_merge($_GET, array('_nocheck' => 1))) . "'"), + rcube_label('showanyway'))) ) ))); exit; |