diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2006-03-30 07:24:23 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2006-03-30 07:24:23 +0100 |
| commit | 8a414837ec3b4388ec20cc08329e9c0b0863c252 (patch) | |
| tree | 83265e0e4d4cf16597266349307f6aee629cac21 /tt-rss.js | |
| parent | 061c26766e507837300bf7a0153126aefd35c34c (diff) | |
sanity check for DATABASE_BACKED_SESSIONS && SINGLE_USER_MODE
Diffstat (limited to 'tt-rss.js')
| -rw-r--r-- | tt-rss.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |