From 8a414837ec3b4388ec20cc08329e9c0b0863c252 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 30 Mar 2006 07:24:23 +0100 Subject: sanity check for DATABASE_BACKED_SESSIONS && SINGLE_USER_MODE --- tt-rss.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 4c02a515f..08fdb945a 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -153,14 +153,14 @@ function backend_sanity_check_callback() { try { if (!xmlhttp.responseXML) { - fatalError(3, "D001;" + xmlhttp.responseText); + fatalError(3, "D001: " + xmlhttp.responseText); return; } var reply = xmlhttp.responseXML.firstChild; if (!reply) { - fatalError(3, "D002;" + xmlhttp.responseText); + fatalError(3, "D002: " + xmlhttp.responseText); return; } -- cgit v1.2.3