Merge pull request #1502 from rakeshkaundilya/master

Feature Request #1604:Show PHP version
This commit is contained in:
Marc Delisle 2015-02-16 08:05:08 -05:00
commit bb83c78b0d

View File

@ -341,6 +341,13 @@ if ($GLOBALS['cfg']['ShowServerInfo'] || $GLOBALS['cfg']['ShowPhpInfo']) {
$php_ext_string,
'li_used_php_extension'
);
$php_version_string = __('PHP version:') . ' ' . phpversion();
PMA_printListItem(
$php_version_string,
'li_used_php_version'
);
}
}