Thanks for the reply. Looks like it does update quite a few tables! What would you say is the "best practice" in terms of doing what we want to do? Is it better to call the change_username function, or could we simply do something like this and achieve the same thing? Or would doing this simply update the username in the user table and that's it?
...
$userdm->set_existing($userinfo);
$userdm->set('username', $newusername);
$changeuser = $userdm->save();
And if it's better to call the update_username function, would it just be something like this??
...
$userdm->set_existing($userinfo);
$userdm->update_username($userid, $newusername);
$changeuser = $userdm->save();
|