[buddypress-trac] [BuddyPress] #3106: bp_members_illegal_names() bug?
buddypress-trac at lists.automattic.com
buddypress-trac at lists.automattic.com
Wed Mar 9 14:26:00 UTC 2011
#3106: bp_members_illegal_names() bug?
--------------------+-----------------------------
Reporter: aesqe | Owner:
Type: defect | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Core | Version: 1.3
Keywords: |
--------------------+-----------------------------
"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 );
}}}
--
Ticket URL: <https://trac.buddypress.org/ticket/3106>
BuddyPress <http://buddypress.org/>
BuddyPress
More information about the buddypress-trac
mailing list