Merge commit '52084d8'

This commit is contained in:
Marc Delisle 2014-02-11 12:53:32 -05:00
commit 3fa7915575

View File

@ -316,10 +316,14 @@ if ($GLOBALS['cfg']['ShowServerInfo'] || $GLOBALS['cfg']['ShowPhpInfo']) {
);
$php_ext_string = __('PHP extension:') . ' '
. $GLOBALS['cfg']['Server']['extension'] . ' '
. PMA_Util::showPHPDocu(
'book.' . $GLOBALS['cfg']['Server']['extension'] . '.php'
);
. $GLOBALS['cfg']['Server']['extension'] . ' ';
if (!empty($GLOBALS['cfg']['Server']['extension'])) {
$php_ext_string .= PMA_Util::showPHPDocu('book.' . $GLOBALS['cfg']['Server']['extension'] . '.php' );
}
else {
$php_ext_string .= __('None');
}
PMA_printListItem(
$php_ext_string,
'li_used_php_extension'