Changeset f22b543 in github
- Timestamp:
- Jun 4, 2010 3:05:06 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 2144f9c
- Parents:
- f6b2824
- File:
-
- 1 edited
-
program/include/rcube_imap.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_imap.php
rd311d80 rf22b543 823 823 824 824 // search set is threaded, we need a new one 825 if ($this->search_threads) 825 if ($this->search_threads) { 826 if (empty($this->search_set['tree'])) 827 return array(); 826 828 $this->search('', $this->search_string, $this->search_charset, $sort_field); 829 } 827 830 828 831 $msgs = $this->search_set; … … 946 949 { 947 950 // update search_set if previous data was fetched with disabled threading 948 if (!$this->search_threads) 951 if (!$this->search_threads) { 952 if (empty($this->search_set)) 953 return array(); 949 954 $this->search('', $this->search_string, $this->search_charset, $sort_field); 955 } 956 957 // empty result 958 if (empty($this->search_set['tree'])) 959 return array(); 950 960 951 961 $thread_tree = $this->search_set['tree'];
Note: See TracChangeset
for help on using the changeset viewer.
