Fix bug where contact search menu fields where always unchecked in Larry skin

Conflicts:

	CHANGELOG
pull/5330/head
Aleksander Machniak 8 years ago
parent 550143269a
commit 877b911dc4

@ -2,6 +2,7 @@ CHANGELOG Roundcube Webmail
===========================
- Fix message list multi-select/deselect issue (#5219)
- Fix bug where contact search menu fields where always unchecked in Larry skin
RELEASE 1.1.5
-------------

@ -298,7 +298,9 @@ function rcube_mail_ui()
else if (rcmail.env.task == 'addressbook') {
rcmail.addEventListener('afterupload-photo', show_uploadform)
.addEventListener('beforepushgroup', push_contactgroup)
.addEventListener('beforepopgroup', pop_contactgroup);
.addEventListener('beforepopgroup', pop_contactgroup)
.addEventListener('menu-open', menu_toggle)
.addEventListener('menu-close', menu_toggle);
if (rcmail.env.action == '') {
new rcube_splitter({ id:'addressviewsplitterd', p1:'#addressview-left', p2:'#addressview-right',

Loading…
Cancel
Save