From 9ff9f516d353a853c7a79fc9c7bd0d842c413011 Mon Sep 17 00:00:00 2001 From: alecpl Date: Tue, 21 Apr 2009 12:46:11 +0000 Subject: - Fix AJAX requests errors handler (#1485000) --- program/js/app.js | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'program/js/app.js') diff --git a/program/js/app.js b/program/js/app.js index 24e871ab5..627ddf5b6 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3911,16 +3911,12 @@ function rcube_webmail() // handle HTTP request errors this.http_error = function(request, status, err) { - alert(status+":"+err); -/* - //alert('Error sending request: '+request_obj.url+' => HTTP '+request_obj.xmlhttp.status); - if (request_obj.__lock) - this.set_busy(false); + var errmsg = request.statusText; - request_obj.reset(); - request_obj.__lock = false; - this.display_message('Unknown Server Error!', 'error'); -*/ + this.set_busy(false); + request.abort(); + + this.display_message('Unknown Server Error!' + (errmsg ? ' ('+errmsg+')' : ''), 'error'); }; // use an image to send a keep-alive siganl to the server -- cgit v1.2.3