From 34aefed9538dee874a4a0f0cf6a463b78af50c03 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sun, 28 Jan 2024 19:51:28 +0100 Subject: [PATCH] disable post check --- install/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/index.php b/install/index.php index 54eacd237..def5d29cd 100644 --- a/install/index.php +++ b/install/index.php @@ -74,7 +74,7 @@ if (file_exists($db_file_path)) { } // Only load the classes in case the user submitted the form -if ($_POST && isset($_POST['submit'])) { +// if ($_POST && isset($_POST['submit'])) { // Load the classes and create the new objects require_once('includes/core_class.php'); @@ -121,7 +121,7 @@ if ($_POST && isset($_POST['submit'])) { } else { $message = $core->show_message('error', 'Not all fields have been filled in correctly. The host, username, password, and database name are required.'); } -} +// } ?>