Skip to content

Commit

Permalink
fix another shit
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl-Tabuso committed May 10, 2024
1 parent 8f4bcba commit 1d7680c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/add-account.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
$password = $_POST['password'];
$hashed_password = password_hash($password, PASSWORD_DEFAULT);

if(empty($last_name) || empty($first_name) || empty($middle_name) || empty($username) || empty($password)) {
if(empty($last_name) || empty($first_name) || empty($username) || empty($password)) {
header("Location: accounts.php");
exit();
}
Expand Down

0 comments on commit 1d7680c

Please sign in to comment.