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

This commit is contained in:
Ralf Becker 2012-07-03 09:33:45 +00:00
parent 487770bc32
commit 67379b1104

View File

@ -1333,7 +1333,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 = '';
}