diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-05-12 13:41:20 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-05-12 13:43:50 +0200 |
commit | 2b72ec46a761ded28c83ef2ac544c9406a874802 (patch) | |
tree | 4987fbb02d66d13fad476edeedad39a759273416 /program/steps/mail/move_del.inc | |
parent | 8f57ce136b3f66de6a8490c0b28551278da4fc5f (diff) |
Bypass cache when counting EXISTS messages
Diffstat (limited to 'program/steps/mail/move_del.inc')
-rw-r--r-- | program/steps/mail/move_del.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/move_del.inc b/program/steps/mail/move_del.inc index c29985875..d98d49d1f 100644 --- a/program/steps/mail/move_del.inc +++ b/program/steps/mail/move_del.inc @@ -166,7 +166,7 @@ else { $OUTPUT->command('set_trash_count', $exists); } else if ($target !== null && $target === $trash) { - $OUTPUT->command('set_trash_count', $RCMAIL->storage->count($trash, 'EXISTS')); + $OUTPUT->command('set_trash_count', $RCMAIL->storage->count($trash, 'EXISTS', true)); } } |