diff --git a/admin/phpinfo.php b/admin/phpinfo.php index e1ecfe1c6f..c2b5dced79 100755 --- a/admin/phpinfo.php +++ b/admin/phpinfo.php @@ -18,7 +18,14 @@ ); include('../header.inc.php'); +// Throw a little notice out if PHPaccelerator is enabled. + if($GLOBALS['_PHPA']['ENABLED']) + { + echo 'PHPaccelerator enabled:
'."\n"; + echo 'PHPaccelerator Version: '.$GLOBALS['_PHPA']['VERSION'].'

'."\n"; + } + phpinfo(); // $phpgw->common->phpgw_footer(); -?> \ No newline at end of file +?>