- Fix Delete button state after deleting identity/response (#1489972)

pull/201/head
Aleksander Machniak 10 years ago
parent ca01e25772
commit 911d4e69f4

@ -54,6 +54,7 @@ CHANGELOG Roundcube Webmail
- Fix so address format errors are ignored when saving a draft (#1489954) - Fix so address format errors are ignored when saving a draft (#1489954)
- Fix incorrect label translation in return receipt (#1489963) - Fix incorrect label translation in return receipt (#1489963)
- Fix security issue in delete-response action - allow only ajax request - Fix security issue in delete-response action - allow only ajax request
- Fix Delete button state after deleting identity/response (#1489972)
RELEASE 1.0.1 RELEASE 1.0.1
------------- -------------

@ -5742,6 +5742,8 @@ function rcube_webmail()
frame.location.href = this.env.blankpage; frame.location.href = this.env.blankpage;
} }
} }
this.enable_command('delete', false);
}; };
this.remove_identity = function(id) this.remove_identity = function(id)
@ -5755,6 +5757,8 @@ function rcube_webmail()
frame.location.href = this.env.blankpage; frame.location.href = this.env.blankpage;
} }
} }
this.enable_command('delete', false);
}; };

Loading…
Cancel
Save