2007-10-29, 12:11 AM
(This post was last modified: 2007-10-29, 12:13 AM by Dennis Tsang.)
The template fix in the link that LeX- posted will fix the problem! I'll even copy the instructions into this thread for you!
Admin CP --> Templates --> Modify / Delete --> *expand your template set*
The logout code should be:
In header_welcomeblock_member:
In index_logoutlink:
In changeuserbox:
For all the codes above, in your existing template you will find something very similar, except without &sid={$session->sid} so that's basically you're just adding that bit into the logout links.
Admin CP --> Templates --> Modify / Delete --> *expand your template set*
The logout code should be:
In header_welcomeblock_member:
<a href="{$mybb->settings['bburl']}/member.php?action=logout&uid={$mybb->user['uid']}&sid={$session->sid}">{$lang->welcome_logout}</a>)<br />
In index_logoutlink:
<a href="{$mybb->settings['bburl']}/member.php?action=logout&uid={$mybb->user['uid']}&sid={$session->sid}">{$lang->index_logout}</a> |
In changeuserbox:
<a href="{$mybb->settings['bburl']}/member.php?action=logout&uid={$mybb->user['uid']}&sid={$session->sid}">{$lang->change_user}</a>
For all the codes above, in your existing template you will find something very similar, except without &sid={$session->sid} so that's basically you're just adding that bit into the logout links.