I don't get it, works fine showing the redirect, but does not whe nI have it off. Here is the code I have in that section of functions.php...
Code:
// ###################### Start standardredirect( #######################
function standardredirect($message="",$url="") {
// print standard redirect page
global $header,$bbuserinfo,$redirectonoff,$footer,$headinclude,$headnewpm,$toplinks,$forumjump,$timezone,$bbtitle,$hometitle,$bburl,$homeurl,$copyrighttext,$privacyurl,$contactuslink,$webmasteremail,$technicalemail,$faxnumber,$address,$companyname,$titleimage,$replyimage,$newthreadimage,$closedthreadimage,$lastvisitdate,$timenow,$session;
$title=$bbtitle;
$pagetitle = "$title";
$errormessage = $message;
// User selectable Redirection by Kars
$url = str_replace("\"", "", $url);
if ($bbuserinfo[redirectonoff]==1) {
$redirectonoff = eval("dooutput(\"".gettemplate("standardredirect")."\");");
}else{
$redirectonoff = header ("Location: $url");
}
exit;
}
// User selectable Redirection by Kars End
The link looks good when I however over it, but when I click it, it removes the action part of the statement.
Note...the action does occure however...I am unsubscribed from the thread for example.
Anyone?
David