From: Michael M Slusarz Date: Tue, 11 Nov 2008 23:37:56 +0000 (-0700) Subject: Use same table structure to display status msgs. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=77228962eac03603f2355ec6ff7d2f5794e61f54;p=horde.git Use same table structure to display status msgs. --- diff --git a/imp/lib/UI/Message.php b/imp/lib/UI/Message.php index 62b8eee10..f6efbe5ea 100644 --- a/imp/lib/UI/Message.php +++ b/imp/lib/UI/Message.php @@ -388,17 +388,11 @@ class IMP_UI_Message $out[] = '' . $val . ''; } } else { - $out[] = '' . $data['icon'] . ''; - if (count($data['text']) == 1) { - $out[] = $msg[0]; - } else { - $out[] = ''; - foreach ($data['text'] as $val) { - $out[] = ''; - } - $out[] = '
' . $val . '
'; + $out[] = '' . $data['icon'] . ''; + foreach ($data['text'] as $val) { + $out[] = ''; } - $out[] = ''; + $out[] = '
' . $val . '
'; } return implode("\n", $out) . "\n\n";