From 929fe1215e12666b847e9fa865320e79bde0a923 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 24 Jan 2011 17:55:14 -0700 Subject: [PATCH] Bug #9529: Store description internally as UTF-8, not in charset of part --- framework/Mime/lib/Horde/Mime/Part.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.11.0