Fixed 2 issues:
authorstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 30 May 2003 17:23:56 +0000 (17:23 +0000)
committerstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 30 May 2003 17:23:56 +0000 (17:23 +0000)
1: Removal of preleading space caused by decodeHeader.
2: Changed call to decodeHeader from compose to htmlsafe = false so we do
not see spaces changed to &nbsp; => wordwrap stops working;

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

functions/mime.php

index 7a18361602d19f30d998ffbcea717d0c1dcc70ce..51d84b242e5b9b24de17af3346afe66f046f097c 100644 (file)
@@ -547,7 +547,7 @@ function decodeBody($body, $encoding) {
  * Patched by Christian Schmidt <christian@ostenfeld.dk>  23/03/2002
  */
 function decodeHeader ($string, $utfencode=true,$htmlsave=true) {
-    global $default_charset, $languages, $squirrelmail_language;
+    global $languages, $squirrelmail_language;
     if (is_array($string)) {
         $string = implode("\n", $string);
     }
@@ -562,10 +562,6 @@ function decodeHeader ($string, $utfencode=true,$htmlsave=true) {
     $iLastMatch = -2;
     $encoded = false;
 
-    if (strtolower($default_charset) == 'iso-8859-1') {
-        $string = str_replace("\240",' ',$string);
-    }
-
     $aString = explode(' ',$string);
     $ret = '';
     foreach ($aString as $chunk) {