11 lines
177 B
PHP
11 lines
177 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Allow the user to log out and log back in
|
||
|
*/
|
||
|
$TOPDIR = '..';
|
||
|
require_once "$TOPDIR/lib/functions.php";
|
||
|
|
||
|
logout();
|
||
|
header("Location: ../service.php");
|
||
|
?>
|