MyBB Community Forums

Full Version: Really strange
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I installed the usermap xml via page manager as i think it's quite sleek. Anyway for some strange reason when i hover over a nation to go and zoom in as soon as i click it logs you out! How would a usermap be linked to log out?

As you can see when i hover, the URL at the bottom of the page says logoutkey.

I've attached a image and the XML file.

Any ideas?

www.totalfootballforums.net

test
qwerty123
Look into the header_welcomeblock_member template - the code there is corrupted (invalid <img> tags, unclosed <a> tags), that's causing the problem.
<div class="secondbar">
   <p class="float_center">
	 
 <a href="{$mybb->settings['bburl']}"><img src="images/glowing/buttons/homebutton.png" alt="some_text"> <a href="{$mybb->settings['bburl']}/usercp.php"><img src="images/glowing/buttons/usercp.png"</a>{$modcplink}{$admincplink}   <a href="{$mybb->settings['bburl']}/private.php"> <img src="images/glowing/buttons/pms.png" alt="some_text"> </a><a href="{$mybb->settings['bburl']}/misc.php?page=contact"> <img src="images/glowing/buttons/contactus.png" alt="some_text"> <a href="{$mybb->settings['bburl']}/misc.php?page=usermap"> <img src="images/glowing/buttons/usermap.png" alt="some_text"> </a><a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}"><img src="images/glowing/buttons/logout.png""
	</p>
</div>

Can you see the problem?
you can try this
<div class="secondbar">
 <p class="float_center">  
 <a href="{$mybb->settings['bburl']}"><img src="images/glowing/buttons/homebutton.png" alt="some_text" /></a> 
 <a href="{$mybb->settings['bburl']}/usercp.php"><img src="images/glowing/buttons/usercp.png" /></a>{$modcplink}{$admincplink}   
 <a href="{$mybb->settings['bburl']}/private.php"> <img src="images/glowing/buttons/pms.png" alt="some_text" /></a>
 <a href="{$mybb->settings['bburl']}/misc.php?page=contact"><img src="images/glowing/buttons/contactus.png" alt="some_text" /></a>
 <a href="{$mybb->settings['bburl']}/misc.php?page=usermap"><img src="images/glowing/buttons/usermap.png" alt="some_text" /></a>
 <a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}"><img src="images/glowing/buttons/logout.png" /></a>
 </p>
</div>