From: Michael M Slusarz Date: Tue, 25 Jan 2011 00:55:14 +0000 (-0700) Subject: Bug #9529: Store description internally as UTF-8, not in charset of part X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=929fe1215e12666b847e9fa865320e79bde0a923;p=horde.git Bug #9529: Store description internally as UTF-8, not in charset of part --- diff --git a/framework/Mime/lib/Horde/Mime/Part.php b/framework/Mime/lib/Horde/Mime/Part.php index 80d675e51..1c098f2e7 100644 --- a/framework/Mime/lib/Horde/Mime/Part.php +++ b/framework/Mime/lib/Horde/Mime/Part.php @@ -1883,7 +1883,7 @@ class Horde_Mime_Part implements ArrayAccess, Countable } if (isset($data['description'])) { - $ob->setDescription(Horde_Mime::decode($data['description'], $ob->getCharset())); + $ob->setDescription(Horde_Mime::decode($data['description'])); } /* Set the name. */