Remove spaces before colons (bug #965594).

This commit is contained in:
Michal Čihař
2004-06-03 10:07:36 +00:00
parent fc8e0c09a3
commit 144f6e53c2
2 changed files with 4 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ $Source$
* libraries/common.lib.php: Add drop class also to td (RFE #946540). * libraries/common.lib.php: Add drop class also to td (RFE #946540).
* db_details.php, db_details_structure.php, css/phpmyadmin.css.php: CSSize * db_details.php, db_details_structure.php, css/phpmyadmin.css.php: CSSize
error messages. error messages.
* header.inc.php: Remove spaces before colons (bug #965594).
2004-06-02 Alexander M. Turek <happybirthdaytome@derrabus.de> 2004-06-02 Alexander M. Turek <happybirthdaytome@derrabus.de>
* db_details_db_info.php, tbl_properties_tbl_info.php: Table type is called * db_details_db_info.php, tbl_properties_tbl_info.php: Table type is called

View File

@@ -161,19 +161,19 @@ if (empty($GLOBALS['is_header_sent'])) {
: ':' . $cfg['Server']['port'] : ':' . $cfg['Server']['port']
) )
); );
echo '<div class="server">' . sprintf($GLOBALS['strServer'],'') . " :\n" echo '<div class="server">' . sprintf($GLOBALS['strServer'],'') . ":\n"
. '<a href="' . $GLOBALS['cfg']['DefaultTabServer'] . '?' . PMA_generate_common_url() . '">' . '<a href="' . $GLOBALS['cfg']['DefaultTabServer'] . '?' . PMA_generate_common_url() . '">'
. htmlspecialchars($server_info) . '</a>' . "\n" . htmlspecialchars($server_info) . '</a>' . "\n"
. '</div>' . "\n\n"; . '</div>' . "\n\n";
if (!empty($GLOBALS['db'])) { if (!empty($GLOBALS['db'])) {
echo '<div class="database">' . $GLOBALS['strDatabase'] . " :\n" echo '<div class="database">' . $GLOBALS['strDatabase'] . ":\n"
. '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url($GLOBALS['db']) . '">' . '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url($GLOBALS['db']) . '">'
. htmlspecialchars($GLOBALS['db']) . '</a>' . "\n" . htmlspecialchars($GLOBALS['db']) . '</a>' . "\n"
. '</div>' . "\n\n"; . '</div>' . "\n\n";
if (!empty($GLOBALS['table'])) { if (!empty($GLOBALS['table'])) {
echo '<div class="table">' . $GLOBALS['strTable'] . " :\n" echo '<div class="table">' . $GLOBALS['strTable'] . ":\n"
. '<a href="' . $GLOBALS['cfg']['DefaultTabTable'] . '?' . PMA_generate_common_url($GLOBALS['db'], $GLOBALS['table']) . '">' . '<a href="' . $GLOBALS['cfg']['DefaultTabTable'] . '?' . PMA_generate_common_url($GLOBALS['db'], $GLOBALS['table']) . '">'
. htmlspecialchars($GLOBALS['table']) . '</a>' . "\n" . htmlspecialchars($GLOBALS['table']) . '</a>' . "\n"
. '</div>' . "\n\n"; . '</div>' . "\n\n";