Log in

View Full Version : STANDARD_REDIRECT not working correctly


fotografik
09-13-2010, 06:53 AM
Hi,

Need some help with the following code :-


$navbits = array();
$navbits[$vbulletin->options['forumhome'] . '.php' . $vbulletin->session->vars['sessionurl_q']] = $vbphrase['forum'];
$parentlist = array_reverse(explode(',', substr($foruminfo['parentlist'], 0, -3)));
foreach ($parentlist AS $forumID)
{
$forumTitle = $vbulletin->forumcache["$forumID"]['title'];
$navbits[fetch_seo_url('forum', array('forumid' => $forumID, 'title' => $forumTitle))] = $forumTitle;
}

// pop the last element off the end of the $nav array so that we can show it without a link
array_pop($navbits);

$navbits[''] = $foruminfo['title'];
$navbits = construct_navbits($navbits);
$navbar = render_navbar_template($navbits);

if ($_POST["action"]=="proceed") {
exec_header_redirect("template-form.php");
exit();
}
else {
if ($_POST["action"]=="refuse") {
$url = "forumdisplay.php?f=102";
$js_url = "forumdisplay.php?f=102"; // STANDARD_REDIRECT template uses this variable for javascript redirect for Mozilla type browsers
// $vbusername = $vbulletin->userinfo['username'];
$errormessage = "Returning you to Personal Classifieds section...";
vB_Template::preRegister('STANDARD_REDIRECT',array ('errormessage' => $errormessage,'url' => $url,'js_url' => $js_url));
eval(print_standard_redirect('errormessage',true,t rue));
exit();
}
}


Specifically, the 2nd part where the "REFUSE" action is selected. The redirect doesn't show up properly and the member is "redirected" to the same page while the intended action is to serve up the forum section ($url = forumdisplay.php&f=102) where the member first entered.

Thanks!

--------------- Added 1284447518 at 1284447518 ---------------

*bump*

Hope someone can assist. Thanks!

fotografik
09-15-2010, 02:39 AM
Does anyone have any insight or ideas? Thank you.