Opened 12 years ago
Last modified 8 years ago
#4911 new defect (bug)
xprofile admin validate, wrong validate
Reported by: | eggproject | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Contributions | Priority: | normal |
Severity: | normal | Version: | 1.6.4 |
Component: | Extended Profile | Keywords: | reporter-feedback |
Cc: |
Description
} else if ( empty( $_POSTfield_file? ) && $_POSTfieldtype? == 'selectbox' && empty( $_POSTselectbox_option?[1] ) ) {
empty($_POSTselectbox_option?[1]) change to !isset
} else if ( empty( $_POSTfield_file? ) && $_POSTfieldtype? == 'selectbox' && !isset( $_POSTselectbox_option?[1] ) ) {
Change History (2)
Note: See
TracTickets for help on using
tickets.
There are valid cases when these fields may not be set. Can you include steps to reproduce the problem you're experiencing?