summaryrefslogtreecommitdiff
path: root/program/steps/mail/move_del.inc
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2006-11-17 15:40:49 +0000
committersvncommit <devs@roundcube.net>2006-11-17 15:40:49 +0000
commita33df6723199491322a948651db353340eb1f903 (patch)
treeba32867141b082333016a9ba1b6eb96c46e69a18 /program/steps/mail/move_del.inc
parente61145f246658a78af1d5b1068c5fc91190ee324 (diff)
Re-initialize rows after move or delete
Diffstat (limited to 'program/steps/mail/move_del.inc')
-rw-r--r--program/steps/mail/move_del.inc3
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);