From b21c898c1caaecc97defb16ccf6cb79298fac4ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 25 Apr 2012 08:54:26 +0200 Subject: [PATCH] Fix reverted condition --- libraries/common.lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 238fb249e6..35e846724b 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -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'];