Adjustment to the $attachment_common_type setup as Mozilla 1.x seems to use
authorjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 19 Dec 2002 15:54:43 +0000 (15:54 +0000)
committerjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 19 Dec 2002 15:54:43 +0000 (15:54 +0000)
only a "," to seperate where as it used to (and IE still does) use ", ".
Slight modification to Darrell Wright idea, thanks.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4282 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/redirect.php

index 8ca31543df2d35a8fc0412d82138b6589a4f00eb..44ef302728702927534bab59b0e39463034b8c94 100644 (file)
@@ -182,6 +182,14 @@ function attachment_common_parse($str, $debug) {
     global $attachment_common_types, $attachment_common_types_parsed;
 
     $attachment_common_types_parsed[$str] = true;
+    
+    /* 
+     * Replace ", " with "," and explode on that as Mozilla 1.x seems to  
+     * use "," to seperate whilst IE, and earlier versions of Mozilla use
+     * ", " to seperate
+     */
+    
+    $str = str_replace( ', ' , ',' , $str );
     $types = explode(', ', $str);
 
     foreach ($types as $val) {