mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-05 04:00:59 +02:00
tweak error message
This commit is contained in:
parent
7a09510c02
commit
81352b548d
@ -27,6 +27,5 @@
|
|||||||
$ERRORS[10] = __("Your version of MySQL is not currently supported. Please see
|
$ERRORS[10] = __("Your version of MySQL is not currently supported. Please see
|
||||||
official site for more information.");
|
official site for more information.");
|
||||||
|
|
||||||
$ERRORS[11] = __("Sanity check request received twice. You could be running
|
$ERRORS[11] = "[This error is not returned by server]";
|
||||||
Firebug or some other disrupting extension. Please turn it off.");
|
|
||||||
?>
|
?>
|
||||||
|
5
prefs.js
5
prefs.js
@ -1243,8 +1243,9 @@ function backend_sanity_check_callback() {
|
|||||||
try {
|
try {
|
||||||
|
|
||||||
if (sanity_check_done) {
|
if (sanity_check_done) {
|
||||||
fatalError(11, "Sanity check request received twice. You could be running"+
|
fatalError(11, "Sanity check request received twice. This can indicate "+
|
||||||
" Firebug or some other disrupting extension. Please turn it off.");
|
"presence of Firebug or some other disrupting extension. "+
|
||||||
|
"Please disable it and try again.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,8 +91,9 @@ function backend_sanity_check_callback() {
|
|||||||
try {
|
try {
|
||||||
|
|
||||||
if (sanity_check_done) {
|
if (sanity_check_done) {
|
||||||
fatalError(11, "Sanity check request received twice. You could be running"+
|
fatalError(11, "Sanity check request received twice. This can indicate "+
|
||||||
" Firebug or some other disrupting extension. Please turn it off.");
|
"presence of Firebug or some other disrupting extension. "+
|
||||||
|
"Please disable it and try again.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user