diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-01-22 09:29:35 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-01-22 09:29:35 +0100 |
commit | febcd4b225f160a4fcbff407df197b7d931eaf2a (patch) | |
tree | 84efe447d3abdd88d6d42ad5678485ed3064f793 /program/steps/mail | |
parent | a62c7392aacf9a87d8c7dbf11b8b047529a162b3 (diff) |
Improve wording: don't pretend that mailbox is empty if search/filter doesn't find any messages
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 0211fabc4..e1cdbc238 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -583,7 +583,7 @@ function rcmail_get_messagecount_text($count = null, $page = null) $max = $RCMAIL->storage->count(NULL, $RCMAIL->storage->get_threading() ? 'THREADS' : 'ALL'); if ($max == 0) - $out = $RCMAIL->gettext('mailboxempty'); + $out = $RCMAIL->storage->get_search_set() ? $RCMAIL->gettext('nomessages') : $RCMAIL->gettext('mailboxempty'); else $out = $RCMAIL->gettext(array('name' => $RCMAIL->storage->get_threading() ? 'threadsfromto' : 'messagesfromto', 'vars' => array('from' => $start_msg, |