Remove spaces from strServer, strDatabase

This commit is contained in:
Michal Čihař
2004-06-03 10:20:28 +00:00
parent 144f6e53c2
commit 6ecfb039fc
104 changed files with 188 additions and 186 deletions

View File

@@ -924,8 +924,8 @@ if ($is_minimum_common == FALSE) {
// or the host field, then generate a name for the server
// in the form of "Server 2", localized of course!
if ( ($val['connect_type'] == 'socket') && empty($val['host']) && empty($val['verbose']) ) {
$cfg['Servers'][$key]['verbose'] = sprintf($GLOBALS['strServer'], $key);
$val['verbose'] = sprintf($GLOBALS['strServer'],$key);
$cfg['Servers'][$key]['verbose'] = $GLOBALS['strServer'] . $key;
$val['verbose'] = $GLOBALS['strServer'] . $key;
}
}