Skip to content

Commit

Permalink
Fix update of group name in the contacts list header on group rename (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Feb 17, 2017
1 parent e2a8fb7 commit 95a7ece
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ CHANGELOG Roundcube Webmail
- Fix bug where some classic skin images were not displayed in IE/Edge (#5614)
- Fix bug where signature couldn't be added above the quote in Firefox 51 (#5628)
- Fix regression where groups with email address were resolved to its members' addresses
- Fix update of group name in the contacts list header on group rename (#5648)

RELEASE 1.3-beta
----------------
Expand Down
4 changes: 1 addition & 3 deletions program/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5908,9 +5908,6 @@ function rcube_webmail()

boxtitle.append($('<span>').text(prop ? prop.name : this.get_label('contacts')));
}

if (prop)
this.triggerEvent('groupupdate', prop);
};

// load contact record
Expand Down Expand Up @@ -6323,6 +6320,7 @@ function rcube_webmail()
else {
$(this.treelist.get_item(key)).children().first().html(prop.name);
this.env.contactfolders[key].name = this.env.contactgroups[key].name = prop.name;
this.set_group_prop(prop);
}

// update list node and re-sort it
Expand Down

0 comments on commit 95a7ece

Please sign in to comment.