alecpl
2010-04-22 356a797b291fc7fd2f291791f48dbc1c093d1abc
- fix the contact creation when group is not selected


1 files modified
9 ■■■■■ changed files
program/js/app.js 9 ●●●●● patch | view | raw | blame | history
program/js/app.js
@@ -3431,8 +3431,8 @@
  // load contact record
  this.load_contact = function(cid, action, framed)
  {
    var add_url = '';
    var target = window;
    var add_url = '', target = window;
    if (this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
      add_url = '&_framed=1';
      target = window.frames[this.env.contentframe];
@@ -3442,8 +3442,11 @@
      return false;
    if (action && (cid || action=='add') && !this.drag_active) {
      if (this.env.group)
        add_url += '&_gid='+urlencode(this.env.group);
      this.set_busy(true);
      target.location.href = this.env.comm_path+'&_action='+action+'&_source='+urlencode(this.env.source)+'&_gid='+urlencode(this.env.group)+'&_cid='+urlencode(cid) + add_url;
      target.location.href = this.env.comm_path+'&_action='+action+'&_source='+urlencode(this.env.source)+'&_cid='+urlencode(cid) + add_url;
    }
    return true;
  };