summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-24 06:23:02 +0100
committerAndrew Dolgov <[email protected]>2009-01-24 06:23:02 +0100
commit64b3069d270d0fd9e58bcd446ce5b67d516e0c90 (patch)
tree0cc895b40e64c671087caf3137a66772b6536c0e /prefs.js
parent3a6521f0411daea27dac9525964684915b31f75f (diff)
remove old-style big feed browser (2)
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/prefs.js b/prefs.js
index 78b1d18d9..8fdaeb940 100644
--- a/prefs.js
+++ b/prefs.js
@@ -1284,14 +1284,15 @@ function backend_sanity_check_callback() {
}
if (!xmlhttp.responseXML) {
- fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
+ fatalError(3, "Sanity Check: Received reply is not XML",
+ xmlhttp.responseText);
return;
}
var reply = xmlhttp.responseXML.firstChild.firstChild;
if (!reply) {
- fatalError(3, "[D002, Invalid RPC reply]: " + xmlhttp.responseText);
+ fatalError(3, "Sanity Check: Invalid RPC reply", xmlhttp.responseText);
return;
}