From 2a0372ff98b6da79ebb4798f2790c5ab79602911 Mon Sep 17 00:00:00 2001 From: fidian Date: Thu, 26 Apr 2001 23:43:18 +0000 Subject: [PATCH] * Opera fix for the download headers from Ray Black III git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1317 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/download.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/download.php b/src/download.php index 0e9e9eed..37cb370f 100644 --- a/src/download.php +++ b/src/download.php @@ -167,12 +167,15 @@ } + // This function is verified to work with Netscape and the *very latest* + // version of IE. I don't know if it works with Opera, but it should now. function DumpHeaders($type0, $type1, $filename, $force) { global $HTTP_USER_AGENT; $isIE = 0; - if (strstr($HTTP_USER_AGENT, 'compatible; MSIE ') !== false) { + if (strstr($HTTP_USER_AGENT, 'compatible; MSIE ') !== false && + strstr($HTTP_USER_AGENT, 'Opera') === false) { $isIE = 1; } -- 2.25.1