That is exactly correct. Any direction how you were able to accomplish that? I didn't think bind() would work, like suggested above.
I've used the code below before. Give it a try.// Force reload from database$user = JFactory::getUser();$session = JFactory::getSession();$session->set('user', new JUser($user->id));--
You received this message because you are subscribed to the Google Groups "Joomla! General Development" group.
To view this discussion on the web, visit https://groups.google.com/d/msg/joomla-dev-general/-/uYqjNXYuaMsJ.
To post to this group, send an email to joomla-de...@googlegroups.com.
To unsubscribe from this group, send email to joomla-dev-gene...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/joomla-dev-general?hl=en-GB.
// Force reload from database
$user = JFactory::getUser();
print_r($user);
$session = JFactory::getSession();
$session->set('user', new JUser($user->id));
$user = JFactory::getUser();
print_r($user);