Changeset 5194 in subversion
- Timestamp:
- Sep 8, 2011 10:45:26 AM (21 months ago)
- Location:
- trunk/roundcubemail
- 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
-
trunk/roundcubemail/CHANGELOG
r5191 r5194 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: -
trunk/roundcubemail/program/include/rcube_imap.php
r5192 r5194 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(); -
trunk/roundcubemail/program/js/app.js
r5182 r5194 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.
