Fix spacing of mime part info blocks
authorMichael M Slusarz <slusarz@curecanti.org>
Thu, 20 Aug 2009 20:54:22 +0000 (14:54 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 20 Aug 2009 22:42:08 +0000 (16:42 -0600)
imp/lib/Views/ShowMessage.php
imp/message.php

index 83caa2c..197535a 100644 (file)
@@ -295,7 +295,7 @@ class IMP_Views_ShowMessage
                     $tmp_status[] = $imp_ui->formatStatusMsg($val);
                 }
 
-                $result['msgtext'] .= '<span class="mimePartInfo">' . implode(' ', $tmp_summary) . '</span>' . implode("\n", $tmp_status) . $info['data'];
+                $result['msgtext'] .= '<div><span class="mimePartInfo">' . implode(' ', $tmp_summary) . '</span></div>' . implode("\n", $tmp_status) . $info['data'];
             }
         }
 
index d9eda6d..c7750bb 100644 (file)
@@ -649,7 +649,7 @@ foreach ($parts_list as $mime_id => $mime_type) {
             $tmp_status[] = $imp_ui->formatStatusMsg($val);
         }
 
-        $msgtext .= '<span class="mimePartInfo">' . implode(' ', $tmp_summary) . '</span>' .
+        $msgtext .= '<div><span class="mimePartInfo">' . implode(' ', $tmp_summary) . '</span></div>' .
             implode("\n", $tmp_status) .
             $info['data'];
     }