limit IE hack (no attachment in Content-disposition header) to IE < 9

This commit is contained in:
Ralf Becker 2012-07-03 09:33:26 +00:00
parent dc7259a59c
commit 3459a34a9f

View File

@ -1337,7 +1337,8 @@ class html
} }
if($fn) 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 = ''; $attachment = '';
} }