summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-07-05 12:43:05 +0200
committerAleksander Machniak <alec@alec.pl>2014-07-05 12:43:05 +0200
commit911d4e69f484c4f9426950ddb7f25193c8c39a15 (patch)
treee816bf9b9e7edf7447b59cb722a08d9d7aa13b1a
parentca01e25772730cab0117bca0e514140e6c5f67d1 (diff)
- Fix Delete button state after deleting identity/response (#1489972)
-rw-r--r--CHANGELOG1
-rw-r--r--program/js/app.js4
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b42083309..82c80fc45 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -54,6 +54,7 @@ CHANGELOG Roundcube Webmail
- Fix so address format errors are ignored when saving a draft (#1489954)
- Fix incorrect label translation in return receipt (#1489963)
- Fix security issue in delete-response action - allow only ajax request
+- Fix Delete button state after deleting identity/response (#1489972)
RELEASE 1.0.1
-------------
diff --git a/program/js/app.js b/program/js/app.js
index b2d936d88..e5d2dce4d 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -5742,6 +5742,8 @@ function rcube_webmail()
frame.location.href = this.env.blankpage;
}
}
+
+ this.enable_command('delete', false);
};
this.remove_identity = function(id)
@@ -5755,6 +5757,8 @@ function rcube_webmail()
frame.location.href = this.env.blankpage;
}
}
+
+ this.enable_command('delete', false);
};