summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-11-24 07:38:02 +0000
committeralecpl <alec@alec.pl>2010-11-24 07:38:02 +0000
commitd1a9885f218896bbc3fc7beff914594a6b8763da (patch)
treeabbd5ac51c6b85ced95a05061a73601da1b37273
parent617623fa79317c0ada53a217d8908c2deda9a04a (diff)
- Small code cleanup
-rw-r--r--program/include/rcube_imap.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php
index 468d98c40..4c021802c 100644
--- a/program/include/rcube_imap.php
+++ b/program/include/rcube_imap.php
@@ -690,20 +690,19 @@ class rcube_imap
$result = array();
if (!empty($this->icache['threads'])) {
+ $dcount = count($this->icache['threads']['depth']);
$result = array(
'count' => count($this->icache['threads']['tree']),
- 'msgcount' => count($this->icache['threads']['depth']),
- 'maxuid' => !empty($this->icache['threads']['depth']) ?
- max(array_keys($this->icache['threads']['depth'])) : 0,
+ 'msgcount' => $dcount,
+ 'maxuid' => $dcount ? max(array_keys($this->icache['threads']['depth'])) : 0,
);
}
else if (is_array($result = $this->_fetch_threads($mailbox))) {
-// list ($thread_tree, $msg_depth, $has_children) = $result;
-// $this->update_thread_cache($mailbox, $thread_tree, $msg_depth, $has_children);
+ $dcount = count($result[1]);
$result = array(
'count' => count($result[0]),
- 'msgcount' => count($result[1]),
- 'maxuid' => !empty($result[1]) ? max(array_keys($result[1])) : 0,
+ 'msgcount' => $dcount,
+ 'maxuid' => $dcount ? max(array_keys($result[1])) : 0,
);
}