This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/htdocs/logout.php
2011-01-14 01:45:19 +11:00

29 lines
591 B
PHP

<?php
// $Header: /cvsroot/phptsmadmin/phpTSMadmin/htdocs/logout.php,v 1.2 2009/04/19 04:00:59 wurley Exp $
/**
* Log the user out of the application.
*
* @package leenooksApp
* @subpackage Page
*/
/**
*/
require './common.php';
if ($app['server']->logout('user'))
system_message(array(
'title'=>_('Authenticate to server'),
'body'=>_('Successfully logged out of server.'),
'type'=>'info'),
'index.php');
else
system_message(array(
'title'=>_('Failed to Logout of server'),
'body'=>_('Please report this error to the admins.'),
'type'=>'error'),
'index.php');
?>