summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-12-08 11:02:25 +0000
committeralecpl <alec@alec.pl>2009-12-08 11:02:25 +0000
commit46b48d9afc9ef9a7669fd0089005b79486b85dda (patch)
treebbe537dd270851280dfc950d665cd20ce92bc907 /program/js
parentb68cb3948523f6553f8d4661fc37ba71dd27cb03 (diff)
- fix console log msg for GET requests
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index c1f332a7c..a02df7853 100644
--- a/program/js/app.js
+++ b/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');
};