Possible php input to this :
Need someone to confirm whether this will work...
Quote:
// jump from forumjump
$goto = '';
switch($forumid) {
case 'home': $goto = 'index'; break;
case 'search': $goto = 'search'; break;
case 'pm': $goto = 'private'; break;
case 'wol': $goto = 'online'; break;
case 'cp': $goto = 'usercp'; break;
}
if ($goto != '') {
if ($s) {
$sessionhash = $s;
}
header("Location: $goto.php?s=$sessionhash");
exit;
}
// end forumjump redirects
<br>
//GENERATE forumjump:
$curforumid = $forumid;
makeforumjump();
|
Satan