#15379 closed defect (bug) (duplicate)
is_email should be RFC complient
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | General | Keywords: | needs-unit-test |
Focuses: | Cc: |
Description
#blamenacin
Attachments (2)
Change History (11)
#4
@
13 years ago
There are alot of slashes in that patch. Can we use less? They are a natural resource after all.
#6
@
13 years ago
- Keywords needs-unit-test added
This patch has one main flaw and that is the lack of a capital P I think it needs-improvement
#8
follow-up:
↓ 9
@
13 years ago
If we wait until 3.2 with PHP 5.x, we can just do
filter_var( $email, FILTER_VALIDATE_EMAIL )
instead, right?
#9
in reply to:
↑ 8
@
13 years ago
- Milestone Awaiting Review deleted
Replying to filosofo:
If we wait until 3.2 with PHP 5.x, we can just do
filter_var( $email, FILTER_VALIDATE_EMAIL )
instead, right?
Probably not. Those can be buggy. We could potentially leverage it internally but we need to watch out for vulnerabilities and what not across PHP versions.
Note: See
TracTickets for help on using
tickets.
I like this alot.