diff options
author | svncommit <devs@roundcube.net> | 2006-11-17 15:40:49 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-11-17 15:40:49 +0000 |
commit | a33df6723199491322a948651db353340eb1f903 (patch) | |
tree | ba32867141b082333016a9ba1b6eb96c46e69a18 | |
parent | e61145f246658a78af1d5b1068c5fc91190ee324 (diff) |
Re-initialize rows after move or delete
-rw-r--r-- | program/steps/mail/move_del.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/steps/mail/move_del.inc b/program/steps/mail/move_del.inc index 116332a64..bfafb411d 100644 --- a/program/steps/mail/move_del.inc +++ b/program/steps/mail/move_del.inc @@ -62,7 +62,8 @@ else // update message count display $pages = ceil($IMAP->messagecount()/$IMAP->page_size); -$commands = sprintf("this.set_rowcount('%s');\n", rcmail_get_messagecount_text()); +$commands = "this.message_list.init();\n"; +$commands .= sprintf("this.set_rowcount('%s');\n", rcmail_get_messagecount_text()); $commands .= sprintf("this.set_env('pagecount', %d);\n", $pages); |