Changeset b7fd98e in github


Ignore:
Timestamp:
Sep 8, 2011 10:45:26 AM (22 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.7, release-0.8
Children:
ba6f487b
Parents:
71f72f9
Message:
  • Fix compacting folder resets message list filter (#1488076)
  • Fix reset-search action so it resets list page number to 1
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    re730cd2 rb7fd98e  
    22=========================== 
    33 
     4- Fix compacting folder resets message list filter (#1488076) 
    45- Fix displaying multipart/alternative messages with only one part (#1487938) 
    56- Rewritten messages caching: 
  • program/include/rcube_imap.php

    r71f72f9 rb7fd98e  
    427427    { 
    428428        if (is_array($str) && $msgs == null) 
    429             list($str, $msgs, $charset, $sort_field, $threads) = $str; 
     429            list($str, $msgs, $charset, $sort_field, $threads, $sorted) = $str; 
    430430        if ($msgs === false) 
    431431            $msgs = array(); 
  • program/js/app.js

    rf8e48df rb7fd98e  
    991991 
    992992        if (s && this.env.mailbox) 
    993           this.list_mailbox(this.env.mailbox); 
     993          this.list_mailbox(this.env.mailbox, 1); 
    994994        else if (s && this.task == 'addressbook') { 
    995995          if (this.env.source == '') { 
     
    998998            this.env.group = ''; 
    999999          } 
    1000           this.list_contacts(this.env.source, this.env.group); 
     1000          this.list_contacts(this.env.source, this.env.group, 1); 
    10011001        } 
    10021002        break; 
     
    27982798  this.expunge_mailbox = function(mbox) 
    27992799  { 
    2800     var lock = false, 
    2801       url = '_mbox='+urlencode(mbox); 
     2800    var lock, url = '_mbox='+urlencode(mbox); 
    28022801 
    28032802    // lock interface if it's the active mailbox 
    28042803    if (mbox == this.env.mailbox) { 
    2805        lock = this.set_busy(true, 'loading'); 
    2806        url += '&_reload=1'; 
    2807      } 
     2804      lock = this.set_busy(true, 'loading'); 
     2805      url += '&_reload=1'; 
     2806      if (this.env.search_request) 
     2807        url += '&_search='+this.env.search_request; 
     2808    } 
    28082809 
    28092810    // send request to server 
Note: See TracChangeset for help on using the changeset viewer.