diff options
author | alecpl <alec@alec.pl> | 2008-10-06 09:32:09 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-10-06 09:32:09 +0000 |
commit | a164a2e64b65fbe0729f6d4326b0219f1914c139 (patch) | |
tree | ac5dfbfed8ba7f4e9040e27a66208695178a349a /program/steps/mail | |
parent | f81c33bb7c2a5ca91552f38042aac386eb1b8020 (diff) |
- #1485463: fixed css classes setting in messages list
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 6 |
1 files changed, 3 insertions, 3 deletions
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('<tr id="rcmrow%d" class="message%s%s %s">'."\n", + $out .= sprintf('<tr id="rcmrow%d" class="message%s%s%s%s">'."\n", $header->uid, $header->seen ? '' : ' unread', $header->deleted ? ' deleted' : '', $header->flagged ? ' flagged' : '', - $zebra_class); + $zebra_class); $out .= sprintf("<td class=\"icon\">%s</td>\n", $message_icon ? sprintf($image_tag, $skin_path, $message_icon, '') : ''); |