Initial checking from CVS

This commit is contained in:
Deon George
2011-01-14 01:45:19 +11:00
commit fe11dd5f51
70 changed files with 10950 additions and 0 deletions

28
htdocs/logout.php Normal file
View File

@@ -0,0 +1,28 @@
<?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');
?>