HB/game/jeu/logout.php

15 lines
263 B
PHP
Raw Normal View History

2008-11-17 11:00:00 +00:00
<?php
if(!defined('INDEX')) { header('Location: ../'); exit; }
$sess->values['connected'] = FALSE;
2008-11-04 11:00:00 +00:00
$sess->close();
2008-11-17 11:00:00 +00:00
2008-11-03 11:00:00 +00:00
if (!empty($HB_login)) {
header('Location: '.$_SERVER["REQUEST_URI"]);
exit;
}
else {
2008-09-20 10:00:00 +00:00
header('Location: ./'.$config['first_page']);
2008-11-03 11:00:00 +00:00
exit;
}
2008-11-17 11:00:00 +00:00
?>