Changeset 3900 in subversion


Ignore:
Timestamp:
Aug 23, 2010 2:21:52 AM (3 years ago)
Author:
alec
Message:
  • Fix list page controls when contacts group is selected
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/js/app.js

    r3890 r3900  
    17921792        this.list_mailbox(this.env.mailbox, page); 
    17931793      else if (this.task == 'addressbook') 
    1794         this.list_contacts(this.env.source, null, page); 
     1794        this.list_contacts(this.env.source, this.env.group, page); 
    17951795    } 
    17961796  }; 
     
    35013501  this.list_contacts = function(src, group, page) 
    35023502  { 
    3503     var add_url = ''; 
    3504     var target = window; 
     3503    var add_url = '', 
     3504      target = window; 
    35053505 
    35063506    if (!src) 
     
    35113511 
    35123512    if (src != this.env.source) { 
    3513       page = 1; 
    3514       this.env.current_page = page; 
     3513      page = this.env.current_page = 1; 
    35153514      this.reset_qsearch(); 
    35163515    } 
Note: See TracChangeset for help on using the changeset viewer.