From 59200ce696ea3647e09d3c1d788ded898ed710f0 Mon Sep 17 00:00:00 2001 From: Nivesh Date: Mon, 2 Jan 2023 11:48:26 +0530 Subject: [PATCH] fix md5 hash --- htdocs/process_email_invite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/process_email_invite.php b/htdocs/process_email_invite.php index b753233..3e92c57 100644 --- a/htdocs/process_email_invite.php +++ b/htdocs/process_email_invite.php @@ -186,7 +186,7 @@ function captcha_check($email, $from_easy_installer) if ($from_easy_installer) { global $ei_secret; $to_check = htmlspecialchars($_POST["check"]); - $check = md5($email. $ei_secret); + $check = md5($email . $ei_secret); if ($to_check !== $check) { $ret = get_easy_installer_message(500); respond_with_json($ret); -- GitLab