Tried the code, thank you

I got this error:
Quote:
Your submission could not be processed because a security token was missing.
|
This was the code I used:
PHP Code:
<form method="post" action="inlinemod.php?do=domovethread&threadids=$thread[threadid]">
<input type="hidden" name="destforumid" value="225">
<input type="hidden" name="threadid" value="$thread[threadid]">
<input type="hidden" name="do" value="domovethreads">
<input type="submit" value="Submit">
</form>
</if>
So now I need to work out how to add the security token.
EDIT:
Added security token code copied over from the threadadmin_movethread template as follows:
PHP Code:
<form method="post" action="inlinemod.php?do=domovethread&threadids=$thread[threadid]">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="destforumid" value="225">
<input type="hidden" name="threadid" value="$thread[threadid]">
<input type="hidden" name="do" value="domovethreads">
<input type="submit" value="Submit">
</form>
And now getting this error:
Quote:
You did not select any valid threads
|
Hmmmmmm.