From: Michael M Slusarz Date: Tue, 24 Nov 2009 06:59:09 +0000 (-0700) Subject: A couple of more drivers to have wrap borders X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=f72f38bdb5ff7c9e6aef3a4d8401c67b48e9ddff;p=horde.git A couple of more drivers to have wrap borders --- diff --git a/imp/lib/Mime/Viewer/Mdn.php b/imp/lib/Mime/Viewer/Mdn.php index ef29826fc..880d456e1 100644 --- a/imp/lib/Mime/Viewer/Mdn.php +++ b/imp/lib/Mime/Viewer/Mdn.php @@ -98,9 +98,11 @@ class IMP_Horde_Mime_Viewer_Mdn extends Horde_Mime_Viewer_Driver $ret[$mdn_id] = array( 'data' => $data, 'status' => $status, - 'type' => 'text/html; charset=' . Horde_Nls::getCharset() + 'type' => 'text/html; charset=' . Horde_Nls::getCharset(), + 'wrap' => 'mimePartWrap' ); return $ret; } + } diff --git a/imp/lib/Mime/Viewer/Status.php b/imp/lib/Mime/Viewer/Status.php index fb67b26fa..996cee749 100644 --- a/imp/lib/Mime/Viewer/Status.php +++ b/imp/lib/Mime/Viewer/Status.php @@ -141,9 +141,11 @@ class IMP_Horde_Mime_Viewer_Status extends Horde_Mime_Viewer_Driver $ret[$this->_mimepart->getMimeId()] = array( 'data' => $data, 'status' => $status, - 'type' => 'text/html; charset=' . Horde_Nls::getCharset() + 'type' => 'text/html; charset=' . Horde_Nls::getCharset(), + 'wrap' => 'mimePartWrap' ); return $ret; } + }