Revert "fix species list tester"

This reverts commit 4b6b75a649.
This commit is contained in:
ehpersonal38
2023-05-28 13:40:19 -04:00
parent f050a60cc1
commit f0be69d79a
+2 -2
View File
@@ -113,7 +113,7 @@ if(isset($_GET["latitude"])){
echo "<script>setTimeout(
function() {
const xhttp = new XMLHttpRequest();
xhttp.open(\"GET\", \"./views.php?view=Settings&restart_php=true\", true);
xhttp.open(\"GET\", \"./config.php?restart_php=true\", true);
xhttp.send();
}, 1000);</script>";
}
@@ -466,7 +466,7 @@ function runProcess() {
output.innerHTML = xhr.responseText;
}
};
xhr.open('GET', `views.php?view=Settings&threshold=${threshold}`);
xhr.open('GET', `scripts/config.php?threshold=${threshold}`);
xhr.send();
}
</script>