diff options
| author | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-11-17 15:40:49 +0000 |
|---|---|---|
| committer | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-11-17 15:40:49 +0000 |
| commit | 3b83229b92da96912d61cf59c03fe8e154f2666d (patch) | |
| tree | eaf57b69c696c6100bf8e92db7efd46b479a122c | |
| parent | 6c200f126ce06e9df405c249f3630d10f296d6e0 (diff) | |
Re-initialize rows after move or delete
git-svn-id: https://svn.roundcube.net/trunk@372 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/steps/mail/move_del.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/move_del.inc b/roundcubemail/program/steps/mail/move_del.inc index 116332a64..bfafb411d 100644 --- a/roundcubemail/program/steps/mail/move_del.inc +++ b/roundcubemail/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); |
