diff options
Diffstat (limited to 'signup')
| -rwxr-xr-x | signup/signup.php | 2 | ||||
| -rwxr-xr-x | signup/verify/verify.php | 2 |
2 files changed, 2 insertions, 2 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; diff --git a/signup/verify/verify.php b/signup/verify/verify.php index 9e22132..a5e43af 100755 --- a/signup/verify/verify.php +++ b/signup/verify/verify.php @@ -74,7 +74,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { exit; } - header("Location: /signin"); + header("Location: /signin/"); } ?> |
