diff options
author | svncommit <devs@roundcube.net> | 2006-06-30 22:02:28 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-06-30 22:02:28 +0000 |
commit | 25d8ba63b3c4831050e5d190cd42cf2b0b0f3a30 (patch) | |
tree | 34e871f1a9c9ec7f4e9f17f018c66b7379fb68b5 /program/steps/mail | |
parent | a894ba5029a09fb9d0453b5cf9c944ce313f8a48 (diff) |
Misc bug and compatibility fixes
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/check_recent.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/func.inc | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/program/steps/mail/check_recent.inc b/program/steps/mail/check_recent.inc index e51cbf867..f949eb232 100644 --- a/program/steps/mail/check_recent.inc +++ b/program/steps/mail/check_recent.inc @@ -32,7 +32,7 @@ foreach ($a_mailboxes as $mbox_name) $count = $IMAP->messagecount(); $unread_count = $IMAP->messagecount(NULL, 'UNSEEN', TRUE); - $commands .= sprintf("this.set_unread_count('%s', %d, true);\n", addslashes($mbox_name), $unread_count); + $commands .= sprintf("this.set_unread_count('%s', %d);\n", addslashes($mbox_name), $unread_count); $commands .= sprintf("this.set_env('messagecount', %d);\n", $count); $commands .= sprintf("this.set_rowcount('%s');\n", rcmail_get_messagecount_text()); $commands .= sprintf("this.set_quota('%s');\n", $IMAP->get_quota()); diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 7e2b3b28d..266c16336 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -500,6 +500,8 @@ function rcmail_js_message_list($a_headers, $insert_top=FALSE) && !array_search('to', $a_show_cols)) $a_show_cols[$f] = 'to'; + $commands .= sprintf("this.set_message_coltypes(%s);\n", array2js($a_show_cols)); + // loop through message headers for ($n=0; $a_headers[$n]; $n++) { |