I'm not sure why vBulletin is still using $HTTP_POST_VARS instead of $_POST anyways.
PHP Code:
if ($_REQUEST['action']=="domove") {
I duplicated domove with $_REQUEST so I can access it from the URL and/or a form.
PHP Code:
$move="<a href=\"postings.php?s=$session[sessionhash]&action=domove&method=movered&threadid=$threadid&forumid=56\">move</a>";
Works great and it's being called from a private forum anyway. Thanks for your help Xenon.