diff options
author | thomascube <thomas@roundcube.net> | 2006-12-01 18:06:16 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-12-01 18:06:16 +0000 |
commit | b19097058c02f203321599bf04a5d7da7c2dafe8 (patch) | |
tree | 2e9cb4d79efe613f47048bab01016c3d0e0342ef /program/steps/mail/move_del.inc | |
parent | 740e9ec00757ba805dbe27b22f92d12f6bd2e690 (diff) |
Introducing preview pane and conditional skin tags
Diffstat (limited to 'program/steps/mail/move_del.inc')
-rw-r--r-- | program/steps/mail/move_del.inc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/program/steps/mail/move_del.inc b/program/steps/mail/move_del.inc index 80b2ad8d6..a7aa5c782 100644 --- a/program/steps/mail/move_del.inc +++ b/program/steps/mail/move_del.inc @@ -24,7 +24,7 @@ $REMOTE_REQUEST = TRUE; // move messages if ($_action=='moveto' && $_GET['_uid'] && $_GET['_target_mbox']) { - $count = sizeof(explode(',', $_GET['_uid'])); + $count = sizeof(explode(',', $_GET['_uid'])); $moved = $IMAP->move_message($_GET['_uid'], $_GET['_target_mbox'], $_GET['_mbox']); if (!$moved) @@ -62,8 +62,7 @@ else // update message count display $pages = ceil($IMAP->messagecount()/$IMAP->page_size); -$commands = "if (this.message_list) this.message_list.init();\n"; -$commands .= sprintf("this.set_rowcount('%s');\n", rcmail_get_messagecount_text()); +$commands = sprintf("this.set_rowcount('%s');\n", rcmail_get_messagecount_text()); $commands .= sprintf("this.set_env('pagecount', %d);\n", $pages); |