mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Fix up valid email function, FS#12269
All we're looking for now is an @ in any email address to fix problem with not being able to have + in addresses and just because I see no advantage to having any sort of stringent validation Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com> Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
parent
78c2b5c67f
commit
6415b65ac9
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ function check_sid() {
|
||||||
# verify that an email address looks like it is legitimate
|
# verify that an email address looks like it is legitimate
|
||||||
#
|
#
|
||||||
function valid_email($addy) {
|
function valid_email($addy) {
|
||||||
return eregi("^[a-z0-9\._-]+@+[a-z0-9\._-]+\.+[a-z]{2,4}$", $addy);
|
return strpos($addy, '@');
|
||||||
}
|
}
|
||||||
|
|
||||||
# a new seed value for mt_srand()
|
# a new seed value for mt_srand()
|
||||||
|
|
Loading…
Add table
Reference in a new issue