MyBB Community Forums

Full Version: Custom Profile Field Issues
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Whilst developing a plugin I've noticed an issue with a custom profile field.

When I create a multi-select box profile field, it displays fine in the UserCP>Edit Profile but when I try and change it in the ACP on a user the box only displays "Array" and not the options I entered when creating the custom field.

Can anyone confirm this on their forums? I think it's a bug.
This has been reported as a bug , use the "Select Box" option instead.
It's a know bug that's been fixed for 1.6.1 Smile
I had the same trouble, the correction is realy simple:
In admin/modules/user/users.php, change the line 3634
Previous:
$select_options = array();
New:
$select_options = explode("\n", $options);