Index: branches/unlabeled/unlabeled-1.15.2/kernel/admin_templates/incs/ajax.js =================================================================== diff -u -r5710 -r5711 --- branches/unlabeled/unlabeled-1.15.2/kernel/admin_templates/incs/ajax.js (.../ajax.js) (revision 5710) +++ branches/unlabeled/unlabeled-1.15.2/kernel/admin_templates/incs/ajax.js (.../ajax.js) (revision 5711) @@ -128,7 +128,7 @@ Request.getErrorHtml = function(p_req) { //TODO: implement accepted way to handle request error - return "

" + "(" + p_req.status + ") " + p_req.statusText + "

" + return '[status: ' + p_req.status + '; status_text: ' + p_req.statusText + '; responce_text: ' + p_req.responseText + ']'; } Request.serializeForm = function(theform) { @@ -225,7 +225,7 @@ } AjaxProgressBar.prototype.errorCallback = function($request, $params, $object) { - alert('AJAX ERROR: ' + Request.getErrorHtml($request)); + alert('AJAX Error; class: AjaxProgressBar; ' + Request.getErrorHtml($request)); } AjaxProgressBar.prototype.FormatTime = function ($seconds) {