#18927 closed enhancement (wontfix)
is_email() check for string first
Reported by: | jkudish | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | minor | Version: | 3.3 |
Component: | Formatting | Keywords: | has-patch close |
Focuses: | Cc: |
Description
Currently, if you pass anything else than a string to is_email()
it will generate a fatal error because strlen()
expects a string. The proposed patch checks for is_string()
first.
Attachments (1)
Change History (6)
#2
follow-up:
↓ 3
@
13 years ago
- Keywords close added
Why? is_email() should only get a string. Passing it something that isn't scalar is a developer error. I'd rather the developer see a fatal error than a suppressed false.
Note: See
TracTickets for help on using
tickets.
Related #17433.