diff options
| author | Connor Thomson <blumatrikz@gmail.com> | 2026-09-20 21:09:44 -0700 |
|---|---|---|
| committer | Connor Thomson <blumatrikz@gmail.com> | 2026-09-20 21:09:44 -0700 |
| commit | 83cd353b01660f34d6fd894d15a27fb1b3aeab4c (patch) | |
| tree | 992fd1ef0e412bb85dc97ef6668e9fe4e416c711 /signup/signup.php | |
| parent | 1b35cf3f1124b161ebde5e9e3a2c74c8ea2821d0 (diff) | |
Fix redirect issue
Diffstat (limited to 'signup/signup.php')
| -rwxr-xr-x | signup/signup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/signup/signup.php b/signup/signup.php index 7648adf..a70ad9c 100755 --- a/signup/signup.php +++ b/signup/signup.php @@ -62,7 +62,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { $subject = "GNUfault.org Verification Code"; if (send_mail($email, $subject, (string)$code)) { - header("Location: verify"); + header("Location: verify/"); } else { echo "Failed to send"; exit; |
