summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-08-13 17:00:35 +0000
committeralecpl <alec@alec.pl>2008-08-13 17:00:35 +0000
commit9a5762a4de13a23a45ac9b85ff475aaf877cf906 (patch)
tree455bdb1323e1264c4a7936369570e803665b2a8c /program/js
parent7c2d30b2e106a23fe2ab295f7dc2e628e4d828bb (diff)
#1485242: better handling of situation when message was sent successfully but cannot be saved
Diffstat (limited to 'program/js')
-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 a86f41c5c..58d117591 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -2206,10 +2206,10 @@ function rcube_webmail()
};
- this.sent_successfully = function(msg)
+ this.sent_successfully = function(type, msg)
{
this.list_mailbox();
- this.display_message(msg, 'confirmation', true);
+ this.display_message(msg, type, true);
}