From 2a8c790b787fd026a4fb3fe0d8876f57608f64f7 Mon Sep 17 00:00:00 2001 From: ruan <2369127-ruany@users.noreply.gitlab.com> Date: Mon, 13 Mar 2023 19:32:48 +0200 Subject: [PATCH] Set verify=false in tables-not-found to prevent infinite recursion --- error/tables-not-found.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/error/tables-not-found.php b/error/tables-not-found.php index dfed034..6e0bf0b 100644 --- a/error/tables-not-found.php +++ b/error/tables-not-found.php @@ -43,7 +43,7 @@
Database tables:"); - $db = new Database($settings, true, true); + $db = new Database($settings, true, false); try { $st = $db->conn->query("SELECT * FROM " . $settings->table['bans'] . " LIMIT 1;"); $st->fetch();