diff --git a/ChangeLog b/ChangeLog index d5f7dac5a..6e3fafe93 100755 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ $Source$ * libraries/common.lib.php: Add drop class also to td (RFE #946540). * db_details.php, db_details_structure.php, css/phpmyadmin.css.php: CSSize error messages. + * header.inc.php: Remove spaces before colons (bug #965594). 2004-06-02 Alexander M. Turek * db_details_db_info.php, tbl_properties_tbl_info.php: Table type is called diff --git a/header.inc.php b/header.inc.php index 354aa062a..b27654da7 100644 --- a/header.inc.php +++ b/header.inc.php @@ -161,19 +161,19 @@ if (empty($GLOBALS['is_header_sent'])) { : ':' . $cfg['Server']['port'] ) ); - echo '
' . sprintf($GLOBALS['strServer'],'') . " :\n" + echo '
' . sprintf($GLOBALS['strServer'],'') . ":\n" . '' . htmlspecialchars($server_info) . '' . "\n" . '
' . "\n\n"; if (!empty($GLOBALS['db'])) { - echo '
' . $GLOBALS['strDatabase'] . " :\n" + echo '
' . $GLOBALS['strDatabase'] . ":\n" . '' . htmlspecialchars($GLOBALS['db']) . '' . "\n" . '
' . "\n\n"; if (!empty($GLOBALS['table'])) { - echo '
' . $GLOBALS['strTable'] . " :\n" + echo '
' . $GLOBALS['strTable'] . ":\n" . '' . htmlspecialchars($GLOBALS['table']) . '' . "\n" . '
' . "\n\n";