diff options
author | thomascube <thomas@roundcube.net> | 2010-03-02 22:31:11 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-03-02 22:31:11 +0000 |
commit | f2cdc551e77ff609bcb4418c22437b8130227217 (patch) | |
tree | 6619f819f0143583f2e5d4d1328d35e603caeabb /program/include | |
parent | 7c9d922b96f9a88b350d6e07f5bde84ccc40f9b0 (diff) |
Use private method
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index c9d2454b1..ca862807f 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -880,7 +880,7 @@ class rcube_imap $old_maxuid = intval($_SESSION['maxuid'][$mailbox]); // refresh message count -> will update $_SESSION['maxuid'][$mailbox] - $this->messagecount($mbox_name, 'ALL', true); + $this->_messagecount($mailbox, 'ALL', true); if ($_SESSION['maxuid'][$mailbox] > $old_maxuid) { $maxuid = max(1, $old_maxuid+1); |