Thanks Ben. I was having trouble getting the user, making modifications and then trying to update the user without unset[ing](‘group’) and unset(‘group_description’). Anyways… I think I have it working now.
One more question:
should the date helper be loaded in ion_auth_model->register()? I think (while working with the package earlier today) I was getting an error trying to register from this code (specifically the now() call):
$data = array(
'username' => $username,
'password' => $password,
'email' => $email,
'group_id' => $group_id,
'ip_address' => $ip_address,
'created_on' => now(),
'last_login' => now(),
'active' => 1
);adding $this->load->helper(‘date’) at the beginning of the function fixed it.