Hi,
Need some help with the following code :-
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,true));
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 [DATE]1284447518[/DATE] at [TIME]1284447518[/TIME] ---------------
*bump*
Hope someone can assist. Thanks!