summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Kinkade <nkinkade@nkinka.de>2009-04-01 12:04:56 +0000
committerNathan Kinkade <nkinkade@nkinka.de>2009-04-01 12:04:56 +0000
commitb3a7d1c2af2451ab9e2652ca6dccfa8556442cbe (patch)
tree85afd4794f3f5efff6c0c56327ec5c952f763db1
parent741b51da66fc64059d79eb8d35f94f8b2e6d9920 (diff)
Fixes a display error caused by the cherry-pick of the CSS sprites implementation.
-rw-r--r--roundcubemail/program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc
index e69551c1c..ccf91daee 100644
--- a/roundcubemail/program/steps/mail/func.inc
+++ b/roundcubemail/program/steps/mail/func.inc
@@ -312,7 +312,7 @@ function rcmail_message_list($attrib)
$js_row_arr['expanded'] = true;
$tree .= $header->has_children?'<div id="rcmexpando' . $header->uid . '" class="' . $toggle_expanded . '">&nbsp;</div>':'<div class="leaf">&nbsp;</div>';
}
- $tree .= sprintf("<td class=\"icon\">%s</td>\n", $message_icon);
+ $tree .= $message_icon;
$IMAP->set_charset(!empty($header->charset) ? $header->charset : $CONFIG['default_charset']);