Changeset 6118 in subversion
- Timestamp:
- Apr 23, 2012 5:22:15 AM (13 months ago)
- Location:
- trunk/roundcubemail/program/include
- Files:
-
- 2 edited
-
rcube_imap_generic.php (modified) (1 diff)
-
rcube_result_index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcube_imap_generic.php
r6091 r6118 1612 1612 // If ESEARCH is supported always use ALL 1613 1613 // but not when items are specified or using simple id2uid search 1614 if (empty($items) && ((int) $criteria !=$criteria)) {1614 if (empty($items) && preg_match('/[^0-9]/', $criteria)) { 1615 1615 $items = array('ALL'); 1616 1616 } -
trunk/roundcubemail/program/include/rcube_result_index.php
r6116 r6118 101 101 // @TODO: work with compressed result?! 102 102 if (isset($this->params['ALL'])) { 103 $data [$idx]= implode(self::SEPARATOR_ELEMENT,103 $data_item = implode(self::SEPARATOR_ELEMENT, 104 104 rcube_imap_generic::uncompressMessageSet($this->params['ALL'])); 105 105 } … … 111 111 unset($data[$i]); 112 112 } 113 114 $data = array_filter($data); 113 115 114 116 if (empty($data)) {
Note: See TracChangeset
for help on using the changeset viewer.
