Fix reverted condition

This commit is contained in:
Michal Čihař 2012-04-25 08:54:26 +02:00
parent 2018bf704f
commit b21c898c1c

View File

@ -3180,9 +3180,9 @@ function PMA_expandUserString($string, $escape = null, $updates = array())
$vars['server_name'] = $GLOBALS['cfg']['Server']['host'];
$vars['server_verbose'] = $GLOBALS['cfg']['Server']['verbose'];
if (empty($GLOBALS['cfg']['Server']['verbose'])) {
$vars['server_verbose_or_name'] = $GLOBALS['cfg']['Server']['verbose'];
} else {
$vars['server_verbose_or_name'] = $GLOBALS['cfg']['Server']['host'];
} else {
$vars['server_verbose_or_name'] = $GLOBALS['cfg']['Server']['verbose'];
}
$vars['database'] = $GLOBALS['db'];
$vars['table'] = $GLOBALS['table'];