diff --git a/errors.php b/errors.php index b2e0841a3..cd76d10a6 100644 --- a/errors.php +++ b/errors.php @@ -1,4 +1,5 @@ $error) { + + $error = preg_replace("/\n/", "", $error); + $error = preg_replace("/\"/", "\\\"", $error); + + print "ERRORS[$id] = \"$error\";\n"; + } + } ?> 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; } - - ebc.innerHTML = - "
" + msg + "" + - "
" + msg + "
"; + + if (ext_info) { + content = content + "