Security Token Error (usercp)

l337m4st3r

New Member
Hi

SOme users get the error when accessing usercp.

All templates are up-to-date. I'm using Clean Blue Skin.

Please can some help me.

Whenever they go to usercp it redirects them to
Code:
http://www.site.net/profile.php?do=dst
and the error is displayed there.

Please help me out

Regards
Dhiven
 
Looks like the coder that did the 3.7.0 upgrade missed one!

Code:
<if condition="$show['dst_correction']">
<!-- auto DST correction code -->
<form action="profile.php?do=dst" method="post" name="dstform">
	<input type="hidden" name="s" value="$session[sessionhash]" />
	<input type="hidden" name="do" value="dst" />
</form>


It should be:

Code:
<if condition="$show['dst_correction']">
<!-- auto DST correction code -->
<form action="profile.php?do=dst" method="post" name="dstform">
	<input type="hidden" name="s" value="$session[sessionhash]" />
        <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

	<input type="hidden" name="do" value="dst" />
</form>

You should find this code in the "Footer" template for the Clear Blue Skin

HTH,

bluescorpion
 
Back
Top