when I update data in the User model, the Auth data is not updated.
How can I \"refresh\" the data which is returned by $this->Auth->user() when I am updating user model
I think that the simpler way to do this is:
$user = $this->Auth->user(); $user['attribute'] = $newValue; $this->Auth->setUser($user);