Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / phpinfo.php
blob5854ff4c9e480bd686e0401b77b244337d55f039
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * phpinfo() wrapper to allow displaying only when configured to do so.
6 * @package PhpMyAdmin
7 */
9 /**
10 * Gets core libraries and defines some variables
12 require_once 'libraries/common.inc.php';
13 PMA_Response::getInstance()->disable();
15 /**
16 * Displays PHP information
18 if ($GLOBALS['cfg']['ShowPhpInfo']) {
19 phpinfo();