Running 2.6.0-pl3 on non-standard HTTP port

2004-11-23

If your web server is running on a port different than 80 or 443, and you have not defined $cfg['PmaAbsoluteUri'],
a small fix is needed.

In libraries/common.lib.php, line 1044
$cfg['PmaAbsoluteUri'] .= $url['port'];
becomes:
$cfg['PmaAbsoluteUri'] .= ':' . $url['port'];