Files
ibsite/user/finishLogout.php
2019-03-30 22:43:34 -04:00

9 lines
264 B
PHP

<?php
if(!isset($_COOKIE['IB_ID']) && !isset($_COOKIE['IB_SESSION'])){
header("Location: /");
}else{
reportError("Error in /user/finishLogout.php");
msg("There was an error logging you out. It has been reported.");
header("Location: /");
}
?>