home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / admin / session_close.FS.inc < prev    next >
Encoding:
Text File  |  2003-03-16  |  782 b   |  26 lines

  1. <?php
  2. /////////////////////////////////////////////////////////
  3. //    
  4. //    include/session_close.FS.inc
  5. //
  6. //    (C)Copyright 2001-2002 Ryo Chijiiwa <Ryo@IlohaMail.org>
  7. //
  8. //    This file is part of IlohaMail, and released under GPL.
  9. //    See COPYING, or http://www.fsf.org/copyleft/gpl.html
  10. //
  11. /////////////////////////////////////////////////////////
  12. /********************************************************
  13.  
  14.     PURPOSE:
  15.     PRE-CONDITIONS:
  16.         This page is include'd in "source/login.php" which is loaded upon logout.
  17.         Session should be closed, and any cached data (i.e. password) purged.
  18.     COMMENTS:
  19.         This file is for the default file-based back-end.  For other backends, 
  20.         modify as necessary.
  21.  
  22. ********************************************************/
  23.  
  24.     unlink($SESSION_DIR.$user.".inc");
  25.  
  26. ?>