1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 05:25:56 +00:00

better fatal error handling by frontend (remove error.php)

This commit is contained in:
Andrew Dolgov
2006-03-31 06:18:55 +01:00
parent 6e7f8d269e
commit af106b0ebe
8 changed files with 101 additions and 111 deletions

View File

@@ -574,15 +574,6 @@ function hideOrShowFeeds(doc, hide) {
}
function fatalError(code, params) {
if (!params) {
window.location = "error.php?c=" + param_escape(code);
} else {
window.location = "error.php?c=" + param_escape(code) +
"&p=" + param_escape(params);
}
}
function selectTableRow(r, do_select) {
r.className = r.className.replace("Selected", "");