mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
24 lines
475 B
PHP
Executable File
24 lines
475 B
PHP
Executable File
<?php
|
|
/**
|
|
* EGgroupware administration
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @package admin
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
$GLOBALS['egw_info']['flags'] = array(
|
|
'noheader' => True,
|
|
'nonavbar' => True,
|
|
'currentapp' => 'admin'
|
|
);
|
|
include('../header.inc.php');
|
|
|
|
if ($GLOBALS['egw']->acl->check('info_access',1,'admin'))
|
|
{
|
|
$GLOBALS['egw']->redirect_link('/index.php');
|
|
}
|
|
|
|
phpinfo();
|