Don't show port after verbose name (bug #1013401).
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$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>
|
||||
* scripts/create-release.sh: Support for snapshots outside sourceforge.
|
||||
* libraries/export/sql.php: Fix exporting of TIMESTAMP (bug #1013730).
|
||||
|
2
main.php
2
main.php
@@ -95,8 +95,8 @@ if ($server > 0) {
|
||||
$server_info = $cfg['Server']['verbose'];
|
||||
} else {
|
||||
$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
|
||||
// used to everybody
|
||||
// if (!empty($cfg['Server']['socket']) && PMA_PHP_INT_VERSION >= 30010) {
|
||||
|
Reference in New Issue
Block a user