Opened 15 years ago
Closed 15 years ago
#3106 closed defect (bug) (fixed)
bp_members_illegal_names() bug?
| Reported by: | aesqe | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.5 |
| Component: | Core | Version: | 1.5 |
| Severity: | 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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
(In [4166]) Correctly handle input in the illegal_names update function. Fixes #3106, props ptahdunbar