From 81352b548d7629a237d30c6feaa9b0a415b2bcac Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 24 Apr 2007 04:32:26 +0100 Subject: [PATCH] tweak error message --- errors.php | 3 +-- prefs.js | 5 +++-- tt-rss.js | 5 +++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/errors.php b/errors.php index 9fb028eca..dc47f38e4 100644 --- a/errors.php +++ b/errors.php @@ -27,6 +27,5 @@ $ERRORS[10] = __("Your version of MySQL is not currently supported. Please see official site for more information."); - $ERRORS[11] = __("Sanity check request received twice. You could be running - Firebug or some other disrupting extension. Please turn it off."); + $ERRORS[11] = "[This error is not returned by server]"; ?> diff --git a/prefs.js b/prefs.js index d61616182..bf72209b7 100644 --- a/prefs.js +++ b/prefs.js @@ -1243,8 +1243,9 @@ function backend_sanity_check_callback() { try { if (sanity_check_done) { - fatalError(11, "Sanity check request received twice. You could be running"+ - " Firebug or some other disrupting extension. Please turn it off."); + fatalError(11, "Sanity check request received twice. This can indicate "+ + "presence of Firebug or some other disrupting extension. "+ + "Please disable it and try again."); return; } diff --git a/tt-rss.js b/tt-rss.js index c2e9d1cb7..91f0b3c30 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -91,8 +91,9 @@ function backend_sanity_check_callback() { try { if (sanity_check_done) { - fatalError(11, "Sanity check request received twice. You could be running"+ - " Firebug or some other disrupting extension. Please turn it off."); + fatalError(11, "Sanity check request received twice. This can indicate "+ + "presence of Firebug or some other disrupting extension. "+ + "Please disable it and try again."); return; }