summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-12-08 11:46:16 +0000
committeralecpl <alec@alec.pl>2010-12-08 11:46:16 +0000
commit5be0d000ac8431079617e8eda2a9675b1bdbe417 (patch)
treede80fb3dbc7b78517bd8249d90977d7bfe64f86e
parent72b807aa6ac0a66cd2d2f2e898e6af678ed560a8 (diff)
- Fix displaying of foldersubscribing/folderunsubscribing labels
-rw-r--r--program/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js
index c7e46e69f..e88e19f69 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -4239,7 +4239,7 @@ function rcube_webmail()
this.subscribe = function(folder)
{
if (folder) {
- var lock = this.display_message('foldersubscribing', 'loading');
+ var lock = this.display_message(this.get_label('foldersubscribing'), 'loading');
this.http_post('subscribe', '_mbox='+urlencode(folder), lock);
}
};
@@ -4247,7 +4247,7 @@ function rcube_webmail()
this.unsubscribe = function(folder)
{
if (folder) {
- var lock = this.display_message('folderunsubscribing', 'loading');
+ var lock = this.display_message(this.get_label('folderunsubscribing'), 'loading');
this.http_post('unsubscribe', '_mbox='+urlencode(folder), lock);
}
};