You are here

function advuser_user_presave in Advanced User 7.3

File

./advuser.module, line 388
Advanced user module allows you to select users based on an advanced set of filtering and apply actions to block, unblock, delete or email the selected users.

Code

function advuser_user_presave(&$edit, $account, $category) {
  advuser_user_load(array(
    $account,
  ));
  return advuser_user_('form', $edit, $account, $category);
}