egroupware/admin/index.php

25 lines
1.1 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
/**************************************************************************\
* phpGroupWare - administration *
* http://www.phpgroupware.org *
2002-11-15 01:18:55 +01:00
* Written by coreteam <phpgroupware-developers@gnu.org> *
* & Stephen Brown <steve@dataclarity.net> *
2002-11-15 01:18:55 +01:00
* to distribute admin across the application directories *
* ------------------------------------------------------ *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
2000-08-18 05:24:22 +02:00
$GLOBALS['phpgw_info']['flags'] = array
(
'currentapp' => 'admin'
);
include('../header.inc.php');
2001-02-06 18:13:48 +01:00
header('Location: '. $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uimainscreen.mainscreen'));
exit;
?>