From 577fd1a3b4a4e1ca7aa8f2ea563d66b66e2cd39e Mon Sep 17 00:00:00 2001 From: johnnyq Date: Mon, 9 Aug 2021 23:37:10 -0400 Subject: [PATCH] Removed uneeded Current PasswordHash Variable --- post.php | 1 - 1 file changed, 1 deletion(-) diff --git a/post.php b/post.php index 1307e069..988c9c7f 100644 --- a/post.php +++ b/post.php @@ -72,7 +72,6 @@ if(isset($_POST['edit_user'])){ $user_id = intval($_POST['user_id']); $name = trim(strip_tags(mysqli_real_escape_string($mysqli,$_POST['name']))); $email = trim(strip_tags(mysqli_real_escape_string($mysqli,$_POST['email']))); - $current_password_hash = $_POST['current_password_hash']; $new_password = $_POST['new_password']; $company = intval($_POST['company']); $level = intval($_POST['level']);