Changeset b407e79 in github


Ignore:
Timestamp:
Oct 24, 2011 12:45:00 PM (19 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
1ae11998
Parents:
0324621
Message:
  • Fix issue where wrong message sequence range could be generated when it was build according to number of messages in a folder
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_imap.php

    rb9787b3 rb407e79  
    15091509                if (is_array($a_index)) 
    15101510                    sort($a_index); 
    1511             } else if ($max = $this->_messagecount($mailbox)) { 
     1511            } else if ($max = $this->_messagecount($mailbox, 'ALL', true, false)) { 
    15121512                $a_index = range(1, $max); 
    15131513            } 
     
    16951695 
    16961696        if ($orig_criteria == 'ALL') { 
    1697             $max = $this->_messagecount($mailbox); 
     1697            $max = $this->_messagecount($mailbox, 'ALL', true, false); 
    16981698            $a_messages = $max ? range(1, $max) : array(); 
    16991699        } 
Note: See TracChangeset for help on using the changeset viewer.