From a164a2e64b65fbe0729f6d4326b0219f1914c139 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 6 Oct 2008 09:32:09 +0000 Subject: - #1485463: fixed css classes setting in messages list --- program/steps/mail/func.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'program/steps/mail') diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index a5ffb9d7b..43e21eea2 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -198,7 +198,7 @@ function rcmail_message_list($attrib) { $message_icon = $attach_icon = $flagged_icon = ''; $js_row_arr = array(); - $zebra_class = $i%2 ? 'even' : 'odd'; + $zebra_class = $i%2 ? ' even' : ' odd'; // set messag attributes to javascript array if ($header->deleted) @@ -238,12 +238,12 @@ function rcmail_message_list($attrib) if ($attrib['attachmenticon'] && preg_match("/multipart\/[mr]/i", $header->ctype)) $attach_icon = $attrib['attachmenticon']; - $out .= sprintf(''."\n", + $out .= sprintf(''."\n", $header->uid, $header->seen ? '' : ' unread', $header->deleted ? ' deleted' : '', $header->flagged ? ' flagged' : '', - $zebra_class); + $zebra_class); $out .= sprintf("%s\n", $message_icon ? sprintf($image_tag, $skin_path, $message_icon, '') : ''); -- cgit v1.2.3