From fe1959fa39723feee2cb717d1dd422ff9445d1d8 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 25 Jan 2011 10:04:38 -0700 Subject: [PATCH] Bug #9529: fix decode() call --- 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 5493e4b86..69b9b9950 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']), 'UTF-8'); + $ob->setDescription(Horde_Mime::decode($data['description'], 'UTF-8')); } /* Set the name. */ -- 2.11.0