From 3459a34a9f46a98fc5ab0dd8efd1e981e0a5f471 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 3 Jul 2012 09:33:26 +0000 Subject: [PATCH] limit IE hack (no attachment in Content-disposition header) to IE < 9 --- phpgwapi/inc/class.html.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.html.inc.php b/phpgwapi/inc/class.html.inc.php index baf5a91f24..51389a72c3 100644 --- a/phpgwapi/inc/class.html.inc.php +++ b/phpgwapi/inc/class.html.inc.php @@ -1337,7 +1337,8 @@ class html } if($fn) { - if(self::$user_agent == 'msie') // && self::$ua_version == '5.5') + // limit IE hack (no attachment in Content-disposition header) to IE < 9 + if(self::$user_agent == 'msie' && self::$ua_version < 9) { $attachment = ''; }