Forums

How to log out user after form submit

stefandeblock 07 Oct, 2010
Hello

is there any way to logout a user from joomla (so, a registerd user), after submitting a form ?
nml375 08 Oct, 2010
Hi,
Try adding something like this to your "on submit - after email" code:
<?
$application =& JFactory::getApplication();
$application->logout();
?>


/Fredrik
GreyHead 08 Oct, 2010
Hi stefandeblock ,

Had a hunt in the code and it looks as though $mainframe->logout(); should do it.

Bob
stefandeblock 09 Oct, 2010
Hi Bob, where should i put this code ? in the after submit field ?
GreyHead 09 Oct, 2010
Hi stefandeblock,

Yes, that's the right place.

Bob
This topic is locked and no more replies can be posted.