Changeset b7fd98e in github
- Timestamp:
- Sep 8, 2011 10:45:26 AM (22 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.7, release-0.8
- Children:
- ba6f487b
- Parents:
- 71f72f9
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap.php (modified) (1 diff)
-
program/js/app.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
re730cd2 rb7fd98e 2 2 =========================== 3 3 4 - Fix compacting folder resets message list filter (#1488076) 4 5 - Fix displaying multipart/alternative messages with only one part (#1487938) 5 6 - Rewritten messages caching: -
program/include/rcube_imap.php
r71f72f9 rb7fd98e 427 427 { 428 428 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; 430 430 if ($msgs === false) 431 431 $msgs = array(); -
program/js/app.js
rf8e48df rb7fd98e 991 991 992 992 if (s && this.env.mailbox) 993 this.list_mailbox(this.env.mailbox );993 this.list_mailbox(this.env.mailbox, 1); 994 994 else if (s && this.task == 'addressbook') { 995 995 if (this.env.source == '') { … … 998 998 this.env.group = ''; 999 999 } 1000 this.list_contacts(this.env.source, this.env.group );1000 this.list_contacts(this.env.source, this.env.group, 1); 1001 1001 } 1002 1002 break; … … 2798 2798 this.expunge_mailbox = function(mbox) 2799 2799 { 2800 var lock = false, 2801 url = '_mbox='+urlencode(mbox); 2800 var lock, url = '_mbox='+urlencode(mbox); 2802 2801 2803 2802 // lock interface if it's the active mailbox 2804 2803 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 } 2808 2809 2809 2810 // send request to server
Note: See TracChangeset
for help on using the changeset viewer.
