From: Michael M Slusarz Date: Tue, 25 Jan 2011 09:52:54 +0000 (-0700) Subject: Bug #9529: Fix undefined error X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c28f2bd6adf2be0645a80fdd5065e0402b1d7e51;p=horde.git Bug #9529: Fix undefined error --- diff --git a/framework/Mime/lib/Horde/Mime/Part.php b/framework/Mime/lib/Horde/Mime/Part.php index 1c098f2e7..5493e4b86 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->setDescription(Horde_Mime::decode($data['description']), 'UTF-8'); } /* Set the name. */