Skip to:
Content

BuddyPress.org

Opened 14 years ago

Closed 14 years ago

#3106 closed defect (bug) (fixed)

bp_members_illegal_names() bug?

Reported by: aesqe's profile aesqe 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)

ticket.3106.diff (547 bytes) - added by ptahdunbar 14 years ago.

Download all attachments as: .zip

Change History (3)

#1 @DJPaul
14 years ago

  • Milestone changed from Awaiting Review to 1.3

#2 @djpaul
14 years ago

  • Resolution set to fixed
  • Status changed from new to closed

(In [4166]) Correctly handle input in the illegal_names update function. Fixes #3106, props ptahdunbar

Note: See TracTickets for help on using tickets.