Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
elseif(isset($_REQUEST['action']) && $_REQUEST["action"] == "log_out"){
$_SESSION = array();
session_destroy();
}
and modifying it as:elseif(isset($_REQUEST['action']) && $_REQUEST["action"] == "log_out"){
$_SESSION = array();
session_destroy();
header("Location: http://yoursite.com/page.html");
}
should do it for you (hopefully, unless headers have already been sent).
elseif(isset($_REQUEST['action']) && $_REQUEST["action"] == "log_out"){
$_SESSION = array();
session_destroy();
header("Location: http://yoursite.com/page.html");
exit();
}
1 to 5 of 5