Revan
02-13-2005, 04:38 PM
Bug in Warn.php line 158 (approx):
check_post($_GET['post'], $vboptions['warn_multiple_per_post']);
should be
check_post($_POST['post'], $vboptions['warn_multiple_per_post']);
Of course disregard the $vboptions, thats just my editing. The important part is the get be converted to post.
Forgot to mention Im running the latest version.
//out
check_post($_GET['post'], $vboptions['warn_multiple_per_post']);
should be
check_post($_POST['post'], $vboptions['warn_multiple_per_post']);
Of course disregard the $vboptions, thats just my editing. The important part is the get be converted to post.
Forgot to mention Im running the latest version.
//out