As the module is now, the settings for whether to allow all users or only your friends to send you private messages, will show up under all tabs (categories) when editing user settings. It should show up only under the "account" category.
this is fixed by changing this line (in user_relationships_ui.module hook_user under the 'form' op) from:
if (module_exists('privatemsg')) { //check if privatemsg is installed
to this:
if (module_exists('privatemsg') && $category == 'account') { //check if privatemsg is installed
Comments
Comment #1
alex.k commentedThank you, will look into it.
Comment #2
Plazmus commentedI would suggest also to change weight to 1, it's set now to -10 and is showing up even before "Account information".
Comment #3
alex.k commentedCommitted in http://drupal.org/cvs?commit=250990. Also made the fieldsets created by UR on the form collapsible.