diff options
author | thomascube <thomas@roundcube.net> | 2005-10-16 19:12:24 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-10-16 19:12:24 +0000 |
commit | 9fee0ed9af6bb1daa3af2ff7290f5589040b4821 (patch) | |
tree | cc2593236458fdf56896831ac4bdee79bc6fc68c /program/include/rcube_imap.inc | |
parent | 69f71ba62d8e7d77c4877b47131836ea3f52f6ee (diff) |
Fixed folder display; added Portuguese and Catalan
Diffstat (limited to 'program/include/rcube_imap.inc')
-rw-r--r-- | program/include/rcube_imap.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/program/include/rcube_imap.inc b/program/include/rcube_imap.inc index 24cd94a52..4c707e3bb 100644 --- a/program/include/rcube_imap.inc +++ b/program/include/rcube_imap.inc @@ -268,7 +268,7 @@ class rcube_imap else $count = iil_C_CountMessages($this->conn, $mailbox); -//print "/**** get messagecount for $mailbox ($mode): $count ****/\n"; +// print "/**** get messagecount for $mailbox ($mode): $count ****/\n"; if (is_array($a_mailbox_cache[$mailbox])) $a_mailbox_cache[$mailbox] = array(); @@ -312,8 +312,8 @@ class rcube_imap $a_header_index = iil_C_FetchHeaders($this->conn, $mailbox, "1:$max"); $a_msg_headers = array(); foreach ($a_header_index as $i => $headers) - if (!$headers->deleted) - $a_msg_headers[$headers->uid] = $headers; + if (!$headers->deleted) + $a_msg_headers[$headers->uid] = $headers; // print "/**** fetch headers ****/\n"; } @@ -445,7 +445,7 @@ class rcube_imap $cache_key = $this->mailbox.'.msg'; if ($this->caching_enabled && $result && ($a_cached_headers = $this->get_cache($cache_key))) { - // close and re-open connection + // close and re-open connection $this->reconnect(); foreach ($uids as $uid) |