Added comment header
authorarjen <arjen>
Thu, 13 Feb 2003 09:00:45 +0000 (09:00 +0000)
committerarjen <arjen>
Thu, 13 Feb 2003 09:00:45 +0000 (09:00 +0000)
src/web/logout.php

index 887d79f..45b0bcf 100644 (file)
@@ -1,12 +1,42 @@
 <?php 
 
 /**************************************************************************
+**  (c) Copyright 2003, Andromeda Technology & Automation
 ** This is free software; you can redistribute it and/or modify it under the
 ** terms of the GNU General Public License, see the file COPYING.
-***************************************************************************/
+***************************************************************************
+** MODULE INFORMATION *
+***********************
+**      FILE NAME      : logout.php
+**      SYSTEM NAME    : Gnucomo - Gnu Computer Monitoring
+**      VERSION NUMBER : $Revision: 1.2 $
+**
+**  DESCRIPTION      : Gnucomo logout script.
+**                     Simply clears the username in the session and
+**                     invokes the login page.
+**
+**  EXPORTED OBJECTS : 
+**  LOCAL    OBJECTS : 
+**  MODULES  USED    :
+***************************************************************************
+**  ADMINISTRATIVE INFORMATION *
+********************************
+**      ORIGINAL AUTHOR : Arjen Baart - arjen@andromeda.nl
+**      CREATION DATE   : Dec 03, 2002
+**      LAST UPDATE     : Feb 08, 2003
+**      MODIFICATIONS   : 
+**************************************************************************/
+
+/*****************************
+   $Log: logout.php,v $
+   Revision 1.2  2003-02-13 09:00:45  arjen
+   Added comment header
+
+******************************/
+
+// RCSID = "$Id: logout.php,v 1.2 2003-02-13 09:00:45 arjen Exp $";
 
 session_start();
-require_once('classes/gnucomo_config.php');
 $_SESSION['username'] = '';
 
 include('login.php');