summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-12-08 11:02:25 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-12-08 11:02:25 +0000
commit967de2f3fe4ba59d87ab5d73b716865970983f36 (patch)
treeefb0a2ab0ce253804344b56d677ccd0d11d6b486
parentbe12886a325afd5c7ba74031a2633e908a14fef5 (diff)
- fix console log msg for GET requests
git-svn-id: https://svn.roundcube.net/trunk@3169 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index c1f332a7c..a02df7853 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -4192,7 +4192,7 @@ function rcube_webmail()
var url = this.env.comm_path + '&_action=' + action + '&' + querystring
// send request
- console.log('HTTP POST: ' + url);
+ console.log('HTTP GET: ' + url);
jQuery.get(url, { _unlock:(lock?1:0) }, function(data){ ref.http_response(data); }, 'json');
};