When I try to delete multiple posts on my forum which is running version 3.7.3 I get this error:
Your submission could not be processed because a security token was missing.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.
I already tried changing
In includes/adminfunctions.php :
Code:
PHP Code:
echo "<input type=\"hidden\" name=\"adminhash\" value=\"" . ADMINHASH . "\" />\n";Add below:
Code:
PHP Code:
echo "<input type=\"hidden\" name=\"securitytoken\" value=\"" . $vbulletin->userinfo['securitytoken'] . "\" />\n";