diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-06-19 20:21:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-06-19 20:21:04 +0000 |
commit | 7752dc4c7c4cffda07152d8ee89bce05f16a5d6c (patch) | |
tree | 812e4285e4ed3173fd8bb75784175c31297549c6 /account.php | |
parent | d67486f79b8d6348fb4f49b6871f307e6738cb08 (diff) | |
download | brdo-7752dc4c7c4cffda07152d8ee89bce05f16a5d6c.tar.gz brdo-7752dc4c7c4cffda07152d8ee89bce05f16a5d6c.tar.bz2 |
- Fixed small bug in account.php with some usernames not being tolerated.
Diffstat (limited to 'account.php')
-rw-r--r-- | account.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/account.php b/account.php index f39cdb483..52f8c2a24 100644 --- a/account.php +++ b/account.php @@ -394,12 +394,6 @@ function account_track_site() { $theme->footer(); } -// Security check: -if (strstr($name, " ") || strstr($hash, " ")) { - watchdog("error", "account: attempt to provide malicious input through URI"); - exit(); -} - switch ($op) { case t("E-mail new password"): account_email_submit(check_input($userid), check_input($email)); |