Sha256: 38a6eec86d50982888081e4c4ffe4f551d4a57921cb5fc04869aea66fbaf9684
Contents?: true
Size: 389 Bytes
Versions: 2
Compression:
Stored size: 389 Bytes
Contents
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * phpinfo() wrapper to allow displaying only when configured to do so. * * @package PhpMyAdmin */ /** * Gets core libraries and defines some variables */ require_once 'libraries/common.inc.php'; PMA_Response::getInstance()->disable(); /** * Displays PHP information */ if ($GLOBALS['cfg']['ShowPhpInfo']) { phpinfo(); } ?>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
simpletool-0.0.3 | lib/support/phpmyadmin/phpmyadmin/phpinfo.php |
simpletool-0.0.2 | lib/support/phpmyadmin/phpmyadmin/phpinfo.php |