Changeset 4254 in subversion
- Timestamp:
- Nov 23, 2010 2:26:11 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcube_imap.php
r4233 r4254 694 694 'count' => count($this->icache['threads']['tree']), 695 695 'msgcount' => count($this->icache['threads']['depth']), 696 'maxuid' => max(array_keys($this->icache['threads']['depth'])), 696 'maxuid' => !empty($this->icache['threads']['depth']) ? 697 max(array_keys($this->icache['threads']['depth'])) : 0, 697 698 ); 698 699 } … … 703 704 'count' => count($result[0]), 704 705 'msgcount' => count($result[1]), 705 'maxuid' => max(array_keys($result[1])),706 'maxuid' => !empty($result[1]) ? max(array_keys($result[1])) : 0, 706 707 ); 707 708 }
Note: See TracChangeset
for help on using the changeset viewer.
