Blob
1 <?php2 //3 // Postfix Admin4 // by Mischa Peters <mischa at high5 dot net>5 // Copyright (c) 2002 - 2005 High5!6 // License Info: http://www.postfixadmin.com/?file=LICENSE.TXT7 //8 // File: logout.php9 //10 // Template File: -none-11 //12 // Template Variables:13 //14 // -none-15 //16 // Form POST \ GET Variables:17 //18 // -none-19 //20 require ("./config.inc.php");21 require ("./functions.inc.php");23 $SESSID_USERNAME = check_session ();25 session_unset ();26 session_destroy ();28 header ("Location: login.php");29 exit;30 ?>
