Quote:
Originally Posted by SamirDarji
The template is present, and works when issueing post-related warnings. How does the template get called after the non-post related warning? That's the area I think I need to look into for a problem.
|
The redirect template is called from the Warn.php file. Go in the file and find the following code:
PHP Code:
$url="member.php?u={$_POST['id']}";
eval('$warn_page .= "' . fetch_template('warn_redirect') . '";');
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// Warn [User] ~ do
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
}
//***************************************************************************************
if($_GET['do']=="ViewMyWarnings"){
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// Warn [View Your Own]
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// Navigation
$navbits= array("Warn.php?$session[sessionurl]&do=ViewMyWarnings" => "Your Warnings");
$navbits[""]= "Viewing Your Warnings";
Right there, at the top, it is where the redirect is called. Make sure this exist in your file.