summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-08-13 17:00:35 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-08-13 17:00:35 +0000
commitc5e00971f9171be9cf8e12ac2f9a2d33ea5a0a70 (patch)
tree98fc3ecc79d883e22721b8b8ccac3bbacae8c14e /roundcubemail/program/js
parentfe462d11e38f1bc24d68dbd41d0caf21a36454d4 (diff)
#1485242: better handling of situation when message was sent successfully but cannot be saved
git-svn-id: https://svn.roundcube.net/trunk@1644 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
-rw-r--r--roundcubemail/program/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index a86f41c5c..58d117591 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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);
}