Don't show port after verbose name (bug #1013401).

This commit is contained in:
Michal Čihař
2004-08-25 17:37:46 +00:00
parent dea219c4a2
commit a56d76b55d
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2004-08-25 Michal Čihař <michal@cihar.com>
* main.php: Don't show port after verbose name (bug #1013401).
2004-08-23 Michal Čihař <michal@cihar.com> 2004-08-23 Michal Čihař <michal@cihar.com>
* scripts/create-release.sh: Support for snapshots outside sourceforge. * scripts/create-release.sh: Support for snapshots outside sourceforge.
* libraries/export/sql.php: Fix exporting of TIMESTAMP (bug #1013730). * libraries/export/sql.php: Fix exporting of TIMESTAMP (bug #1013730).

View File

@@ -95,8 +95,8 @@ if ($server > 0) {
$server_info = $cfg['Server']['verbose']; $server_info = $cfg['Server']['verbose'];
} else { } else {
$server_info = $cfg['Server']['host']; $server_info = $cfg['Server']['host'];
}
$server_info .= (empty($cfg['Server']['port']) ? '' : ':' . $cfg['Server']['port']); $server_info .= (empty($cfg['Server']['port']) ? '' : ':' . $cfg['Server']['port']);
}
// loic1: skip this because it's not a so good idea to display sockets // loic1: skip this because it's not a so good idea to display sockets
// used to everybody // used to everybody
// if (!empty($cfg['Server']['socket']) && PMA_PHP_INT_VERSION >= 30010) { // if (!empty($cfg['Server']['socket']) && PMA_PHP_INT_VERSION >= 30010) {