try to detect sanity check abnormalities (caused by Firebug)
This commit is contained in:
parent
23943c9b7e
commit
7a09510c02
|
@ -26,4 +26,7 @@
|
||||||
|
|
||||||
$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
|
||||||
|
Firebug or some other disrupting extension. Please turn it off.");
|
||||||
?>
|
?>
|
||||||
|
|
12
prefs.js
12
prefs.js
|
@ -14,6 +14,8 @@ var init_params = new Array();
|
||||||
|
|
||||||
var caller_subop = false;
|
var caller_subop = false;
|
||||||
|
|
||||||
|
var sanity_check_done = false;
|
||||||
|
|
||||||
function expand_feed_callback() {
|
function expand_feed_callback() {
|
||||||
if (xmlhttp.readyState == 4) {
|
if (xmlhttp.readyState == 4) {
|
||||||
try {
|
try {
|
||||||
|
@ -1239,7 +1241,13 @@ function backend_sanity_check_callback() {
|
||||||
if (xmlhttp.readyState == 4) {
|
if (xmlhttp.readyState == 4) {
|
||||||
|
|
||||||
try {
|
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.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!xmlhttp.responseXML) {
|
if (!xmlhttp.responseXML) {
|
||||||
fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
|
fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
|
||||||
return;
|
return;
|
||||||
|
@ -1275,6 +1283,8 @@ function backend_sanity_check_callback() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sanity_check_done = true;
|
||||||
|
|
||||||
init_second_stage();
|
init_second_stage();
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
11
tt-rss.js
11
tt-rss.js
|
@ -14,6 +14,7 @@ var cookie_lifetime = 0;
|
||||||
var active_feed_id = 0;
|
var active_feed_id = 0;
|
||||||
var active_feed_is_cat = false;
|
var active_feed_is_cat = false;
|
||||||
var number_of_feeds = 0;
|
var number_of_feeds = 0;
|
||||||
|
var sanity_check_done = false;
|
||||||
|
|
||||||
var xmlhttp = Ajax.getTransport();
|
var xmlhttp = Ajax.getTransport();
|
||||||
var xmlhttp_ctr = Ajax.getTransport();
|
var xmlhttp_ctr = Ajax.getTransport();
|
||||||
|
@ -88,7 +89,13 @@ function backend_sanity_check_callback() {
|
||||||
if (xmlhttp.readyState == 4) {
|
if (xmlhttp.readyState == 4) {
|
||||||
|
|
||||||
try {
|
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.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!xmlhttp.responseXML) {
|
if (!xmlhttp.responseXML) {
|
||||||
fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
|
fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
|
||||||
return;
|
return;
|
||||||
|
@ -124,6 +131,8 @@ function backend_sanity_check_callback() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sanity_check_done = true;
|
||||||
|
|
||||||
init_second_stage();
|
init_second_stage();
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in New Issue