Commit 98225ae3d1232d86c72ecb78a21535d430b6e4dd

Authored by Michael Joseph
1 parent 78be5fe2

made all requires relative

updated phpdoc header


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@146 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 8 additions and 10 deletions
logout.php
1 <?php 1 <?php
2 2
3 /** 3 /**
4 - * logout.php -- Logout page 4 + * $Id$
5 * 5 *
6 - * This page controls the web application by responding to a set of 6 + * Logout page -- this page controls the web application by responding to a set of
7 * defined actions. The controller performs session handling, page-level 7 * defined actions. The controller performs session handling, page-level
8 * authentication and forwards the request to the appropriate handling 8 * authentication and forwards the request to the appropriate handling
9 * page. 9 * page.
10 * 10 *
11 - *  
12 * Licensed under the GNU GPL. For full terms see the file COPYING. 11 * Licensed under the GNU GPL. For full terms see the file COPYING.
13 * 12 *
14 - * @version $Id$  
15 - * @Copyright (c) 1999-2002 The Owl Project Team  
16 - * @author michael 13 + * @version $Revision$
  14 + * @author <a href="mailto:michael@jamwarehouse.com>Michael Joseph</a>, Jam Warehouse (Pty) Ltd, South Africa
17 * @package dms 15 * @package dms
18 */ 16 */
19 17
20 // main library routines and defaults 18 // main library routines and defaults
21 require_once("./config/dmsDefaults.php"); 19 require_once("./config/dmsDefaults.php");
22 -require_once("./lib/owl.lib.php");  
23 -require_once("./lib/control.inc");  
24 -require_once("./config/html.php");  
25 -require_once("./lib/Session.inc"); 20 +require_once("$default->owl_fs_root/lib/owl.lib.php");
  21 +require_once("$default->owl_fs_root/config/html.php");
  22 +require_once("$default->owl_fs_root/lib/control.inc");
  23 +require_once("$default->owl_fs_root/lib/Session.inc");
26 24
27 // destroy the session 25 // destroy the session
28 Session::destroy(); 26 Session::destroy();