Opened 14 years ago
Closed 14 years ago
#3106 closed defect (bug) (fixed)
bp_members_illegal_names() bug?
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 1.5 | Priority: | normal |
Severity: | Version: | 1.5 | |
Component: | Core | Keywords: | |
Cc: | aesqe@… |
Description
"bp-members/bp-members-signup.php", lines 238,239:
elseif ( is_string( $value ) ) $db_illegal_names = implode( ' ', $names );
shouldn't that be:
elseif ( is_string( $value ) ) $db_illegal_names = explode( ' ', $value );
Attachments (1)
Change History (3)
Note: See
TracTickets for help on using
tickets.
(In [4166]) Correctly handle input in the illegal_names update function. Fixes #3106, props ptahdunbar