From 685352116602e42b23484119f1fde5c6b7fef594 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 18 Feb 2011 12:28:03 +0300 Subject: fix fatalError() not working properly --- functions.js | 44 +++++++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 19 deletions(-) (limited to 'functions.js') diff --git a/functions.js b/functions.js index 67d7b4f23..88365d70a 100644 --- a/functions.js +++ b/functions.js @@ -503,8 +503,6 @@ function setInitParam(key, value) { function fatalError(code, msg, ext_info) { try { - if (!ext_info) ext_info = "N/A"; - if (code == 6) { window.location.href = "tt-rss.php"; } else if (code == 5) { @@ -513,28 +511,36 @@ function fatalError(code, msg, ext_info) { if (msg == "") msg = "Unknown error"; - var ebc = $("xebContent"); - - if (ebc) { - - Element.show("dialog_overlay"); - Element.show("errorBoxShadow"); - Element.hide("xebBtn"); - - if (ext_info) { - if (ext_info.responseText) { - ext_info = ext_info.responseText; - } + if (ext_info) { + if (ext_info.responseText) { + ext_info = ext_info.responseText; } + } + + if (ERRORS && ERRORS[code] && !msg) { + msg = ERRORS[code]; + } - ebc.innerHTML = - "
Error message:
" + - "
" + msg + "
" + - "
Additional information:
" + - ""; + var content = "
Error code: " + code + "
" + + "

" + msg + "

"; + + if (ext_info) { + content = content + "
Additional information:
" + + ""; } + + var dialog = new dijit.Dialog({ + title: "Fatal error", + style: "width: 600px", + content: content}); + + dialog.show(); + } + return false; + } catch (e) { exception_error("fatalError", e); } -- cgit v1.2.3