I'm trying to update an user with update_user function. But I have got this error.
Fatal error: Uncaught exception ‘Exception’ with message ‘Undefined method on_auth::update_user() called’
My code is
$id = 8;
$data = array(
'first_name' => 'Ben',
'last_name' => 'Edmunds',
);
$this->ion_auth->update_user($id, $data);
Need help. Thank you
on_auth. It should beion_auth. Search for typos. – Wesley Murch Nov 17 '11 at 20:50