More updating with new sanitize function and more logging and alerting cont

This commit is contained in:
johnnyq
2023-02-16 22:26:38 -05:00
parent 4708f6b117
commit 8a91ae0e46
8 changed files with 353 additions and 345 deletions

View File

@@ -34,7 +34,7 @@ if (isset($_GET['o'])) {
// Search
if (isset($_GET['q'])) {
$q = strip_tags(mysqli_real_escape_string($mysqli, trim($_GET['q'])));
$q = sanitizeInput($_GET['q']);
} else {
$q = "";
}