A couple of more drivers to have wrap borders
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 24 Nov 2009 06:59:09 +0000 (23:59 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 24 Nov 2009 06:59:09 +0000 (23:59 -0700)
imp/lib/Mime/Viewer/Mdn.php
imp/lib/Mime/Viewer/Status.php

index ef29826..880d456 100644 (file)
@@ -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;
     }
+
 }
index fb67b26..996cee7 100644 (file)
@@ -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;
     }
+
 }