This commit is contained in:
2007-12-15 02:19:09 +00:00
commit 66ca16f8b0
24 changed files with 1199 additions and 0 deletions

17
page-sources/logout.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
/*
*
*
*/
// Log the user our of their current session
$_session->logout();
// Leave the user a notice, and redirect them back to the home page
$_template['title'] = 'Logout';
$_template['messages'][] = 'You have successfully been logged out.';
$_template['redirect-to'] = $_req->construct('page','home');
?>