i made a small mod that you can replace the entire logout crap with "$vlogout"
just out this in the phpinclude (remove the old code first)
PHP Code:
if ($bbuserinfo['userid']<"1") {
//they're a guest
$register_or_controlpanel = "<a href=\"register.php?s=$session[sessionhash]&action=signup\"><img src=\"{imagesfolder}/top_register.gif\" alt=\"Registration is free!\" border=\"0\"></a>";
} else {
//they're registered
$register_or_controlpanel = "<a href=\"usercp.php?s=$session[sessionhash]\"><img src=\"{imagesfolder}/top_profile.gif\" alt=\"Here you can view your subscribed threads, work with private messages and edit your profile and preferences\" border=\"0\"></a>";
$vlogout = "<a href=\"member.php?s=$session[sessionhash]&&action=logout\"><img src=\"{imagesfolder}/top_logout.gif\" alt=\"Log Out\" border=\"0\"></a>";
}
and then do this:
open header.php
find
Code:
<a href="member.php?s=$session[sessionhash]&action=logout"><img src="{imagesfolder}/top_logout.gif" alt="Logout" border="0"></a>
replace with
this will make it so you dont have to have the logout button next to the usercp (i like mine at the end)
this is the first time i ever modded something that has to do with php so go easy on me! in a n00b!