Fix update of group name in the contacts list header on group rename (#5648)

pull/5754/head
Aleksander Machniak 8 years ago
parent 528084ff37
commit b1a5b76445

@ -17,6 +17,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.2.3
-------------

@ -5621,9 +5621,6 @@ function rcube_webmail()
boxtitle.append($('<span>').text(prop ? prop.name : this.get_label('contacts')));
}
if (prop)
this.triggerEvent('groupupdate', prop);
};
// load contact record
@ -6049,6 +6046,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

Loading…
Cancel
Save