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

alex.k’s picture

Assigned: Unassigned » alex.k
Issue tags: +rc2block

Thank you, will look into it.

Plazmus’s picture

I would suggest also to change weight to 1, it's set now to -10 and is showing up even before "Account information".

alex.k’s picture

Status: Active » Fixed

Committed in http://drupal.org/cvs?commit=250990. Also made the fieldsets created by UR on the form collapsible.

Status: Fixed » Closed (fixed)
Issue tags: -rc2block

Automatically closed -- issue fixed for 2 weeks with no activity.