Fixed bad redirect when adding a client login

This commit is contained in:
johnnyq 2022-10-07 18:05:28 -04:00
parent 1c0061e6bc
commit 46c2ee917e
1 changed files with 1 additions and 1 deletions

View File

@ -5209,7 +5209,7 @@ if(isset($_POST['add_login'])){
$_SESSION['alert_message'] = "Login added";
header("Location: client.php?client_id=$client_id&tab=logins");
header("Location: " . $_SERVER["HTTP_REFERER"]);
}