lcars/admin/logout.php
kjodle 9ff50bd47d LCARS GetSimple Template
LCARS is a template for the GetSimple CMS that mimics the monitor
appearance in the television series Star Trek: The Next Generation
2015-10-18 12:03:50 -04:00

25 lines
355 B
PHP

<?php
/**
* Logout
*
* Logs the user out of the GetSimple control panel
*
* @package GetSimple
* @subpackage Login
*/
# Setup inclusions
$load['plugin'] = true;
ob_start();
include('inc/common.php');
# end it all :'(
kill_cookie($cookie_name);
exec_action('logout');
# send back to login screen
redirect('index.php?logout');
ob_end_flush();
?>