From: Michael M Slusarz Date: Tue, 21 Sep 2010 20:20:25 +0000 (-0600) Subject: Tweak Content-Description names for m/alternative messages X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6a440d241b7778d67fa3887bd46a3a809a09db0a;p=horde.git Tweak Content-Description names for m/alternative messages --- diff --git a/imp/lib/Compose.php b/imp/lib/Compose.php index 421222d6e..a476836ce 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -1084,7 +1084,7 @@ class IMP_Compose $htmlBody->setType('text/html'); $htmlBody->setCharset($charset); $htmlBody->setDisposition('inline'); - $htmlBody->setDescription(Horde_String::convertCharset(_("HTML Version"), $nls_charset, $charset)); + $htmlBody->setDescription(Horde_String::convertCharset(_("HTML Message"), $nls_charset, $charset)); /* Add default font CSS information here. The data comes to us * with no HTML body tag - so simply wrap the data in a body @@ -1105,7 +1105,7 @@ class IMP_Compose $htmlBody->setContents($GLOBALS['injector']->getInstance('Horde_Text_Filter')->filter($body_html, 'cleanhtml', array('charset' => $charset))); - $textBody->setDescription(Horde_String::convertCharset(_("Plaintext Version"), $nls_charset, $charset)); + $textBody->setDescription(Horde_String::convertCharset(_("Plaintext Message"), $nls_charset, $charset)); $textpart = new Horde_Mime_Part(); $textpart->setType('multipart/alternative');