Changeset 3fb3792 in github
- Timestamp:
- Mar 23, 2010 4:05:03 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 519aeda
- Parents:
- bf214a4
- File:
-
- 1 edited
-
program/include/rcube_imap.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_imap.php
r02f7cb8 r3fb3792 491 491 * 492 492 * @param string Mailbox/folder name 493 * @param string Mode for count [ALL| UNSEEN|RECENT]493 * @param string Mode for count [ALL|THREADS|UNSEEN|RECENT] 494 494 * @param boolean Force reading from server and update cache 495 495 * @return int Number of messages … … 551 551 // get message count using SEARCH 552 552 // not very performant but more precise (using UNDELETED) 553 // disable THREADS for this request 554 $threads = $this->threading; 555 $this->threading = false; 553 556 $index = $this->_search_index($mailbox, $search_str); 557 $this->threading = $threads; 558 554 559 $count = is_array($index) ? count($index) : 0; 555 560
Note: See TracChangeset
for help on using the changeset viewer.
