MyBB Community Forums

Full Version: how to log out?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I tried using the following code to log out.
<a href="member.php?action=logout">Log Out</a>
but it doesn't have the user id to log out. What can I add to the code to make it where users can log out?
<a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">{$lang->welcome_logout}</a>
(2013-07-24, 09:08 PM)Destroy666 Wrote: [ -> ]
<a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">{$lang->welcome_logout}</a>

Thank you very much Destroy666!