mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Added a PHP Info page back into the admin section.
This commit is contained in:
parent
ab823d410a
commit
69d6ba0a2d
@ -21,7 +21,8 @@
|
||||
'Global Categories' => $phpgw->link('/admin/categories.php'),
|
||||
'Change Main Screen Message' => $phpgw->link('/admin/mainscreen_message.php'),
|
||||
'View Sessions' => $phpgw->link('/admin/currentusers.php'),
|
||||
'View Access Log' => $phpgw->link('/admin/accesslog.php')
|
||||
'View Access Log' => $phpgw->link('/admin/accesslog.php'),
|
||||
'phpInfo' => $phpgw->link('/admin/phpinfo.php')
|
||||
);
|
||||
//Do not modify below this line
|
||||
display_section($appname,$title,$file);
|
||||
|
23
admin/phpinfo.php
Executable file
23
admin/phpinfo.php
Executable file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare - administration *
|
||||
* http://www.phpgroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* 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$ */
|
||||
|
||||
$phpgw_info['flags'] = array(
|
||||
'currentapp' => 'admin',
|
||||
'enable_nextmatchs_class' => True
|
||||
);
|
||||
include('../header.inc.php');
|
||||
|
||||
phpinfo();
|
||||
|
||||
$phpgw->common->phpgw_footer();
|
||||
?>
|
Loading…
Reference in New Issue
Block a user