Changeset 5999 in subversion
- Timestamp:
- Mar 13, 2012 4:59:07 AM (15 months ago)
- Location:
- branches/release-0.7
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-0.7/CHANGELOG
r5991 r5999 2 2 =========================== 3 3 4 - Fix counting of messages search results (on refresh when search filter is in use) 5 6 RELEASE 0.7.2 7 ------------- 4 8 - Fix encoding of attachment with comma in name (#1488389) 5 9 - Fix handling of % character in IMAP protocol (#1488382) -
branches/release-0.7/program/include/rcube_imap.php
r5952 r5999 688 688 $mode = strtoupper($mode); 689 689 690 // count search set 691 if ($this->search_string && $mailbox == $this->mailbox && ($mode == 'ALL' || $mode == 'THREADS') && !$force) {690 // count search set, assume search set is always up-to-date (don't check $force flag) 691 if ($this->search_string && $mailbox == $this->mailbox && ($mode == 'ALL' || $mode == 'THREADS')) { 692 692 if ($this->search_threads) 693 693 return $mode == 'ALL' ? count((array)$this->search_set['depth']) : count((array)$this->search_set['tree']);
Note: See TracChangeset
for help on using the changeset viewer.
