2001-06-12 03:03:06 +02:00
|
|
|
<?php
|
2016-04-27 21:12:20 +02:00
|
|
|
/**
|
|
|
|
* EGgroupware administration
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @package admin
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2003-08-28 16:16:30 +02:00
|
|
|
|
2016-04-27 21:12:20 +02:00
|
|
|
$GLOBALS['egw_info']['flags'] = array(
|
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'currentapp' => 'admin'
|
|
|
|
);
|
|
|
|
include('../header.inc.php');
|
2001-06-12 03:03:06 +02:00
|
|
|
|
2016-04-27 21:12:20 +02:00
|
|
|
if ($GLOBALS['egw']->acl->check('info_access',1,'admin'))
|
|
|
|
{
|
|
|
|
$GLOBALS['egw']->redirect_link('/index.php');
|
|
|
|
}
|
2004-01-22 03:33:03 +01:00
|
|
|
|
2016-04-27 21:12:20 +02:00
|
|
|
phpinfo();
|