diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-12-12 19:59:08 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-12-12 19:59:08 +0100 |
commit | 04689fa7ee89c29b57278a354b39d9ee5397a442 (patch) | |
tree | 9f58631180d1341d915aba5e9ee4824853383017 /program/steps/mail/check_recent.inc | |
parent | 0435f40999564586dd9bd9669696ec04c16f2e32 (diff) |
Fix so compacting of non-empty folder is possible also when messages list is empty (#1488858)
Diffstat (limited to 'program/steps/mail/check_recent.inc')
-rw-r--r-- | program/steps/mail/check_recent.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/steps/mail/check_recent.inc b/program/steps/mail/check_recent.inc index 61693b4ed..4befbf275 100644 --- a/program/steps/mail/check_recent.inc +++ b/program/steps/mail/check_recent.inc @@ -75,13 +75,15 @@ foreach ($a_mailboxes as $mbox_name) { if (!empty($_GET['_quota'])) $OUTPUT->command('set_quota', rcmail_quota_content()); + $OUTPUT->set_env('exists', $RCMAIL->storage->count($mbox_name, 'EXISTS')); + // "No-list" mode, don't get messages if (empty($_GET['_list'])) continue; // get overall message count; allow caching because rcube_storage::folder_status() did a refresh $list_mode = $RCMAIL->storage->get_threading() ? 'THREADS' : 'ALL'; - $all_count = $RCMAIL->storage->count(null, $list_mode, false, false); + $all_count = $RCMAIL->storage->count($mbox_name, $list_mode, false, false); $page = $RCMAIL->storage->get_page(); $page_size = $RCMAIL->storage->get_pagesize(); |