diff --git a/ChangeLog b/ChangeLog index c05d3a519..3c88100b6 100755 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ $Source$ which translations has failed, now also converts by default only modified files and is capable to get charset from filename when reading from file has failed. + * left.php3: More fixes for HTML entities. 2003-04-14 Garvin Hicking * libraries/common.lib.php3: Fixed SHOW TABLE STATUS LIKE ... FROM ... diff --git a/left.php3 b/left.php3 index ab15db879..8f7ecf75b 100755 --- a/left.php3 +++ b/left.php3 @@ -252,9 +252,9 @@ if ($num_dbs > 1) { $book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label'); ?> - + <?php echo $strBrowse . ': ' . $url_title; ?>  - +
1) { $book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label'); $table_list .= ' ' . "\n"; - $table_list .= ' ' . $strBrowse . ': ' . $url_title . ' ' . "\n"; + $table_list .= ' ' . $strBrowse . ': ' . $url_title . ' ' . "\n"; if (PMA_USR_BROWSER_AGENT == 'IE') { - $table_list .= ' ' . ($alias != '' && $cfg['ShowTooltipAliasTB'] ? $alias : htmlspecialchars($table)) . '
' . "\n"; + $table_list .= ' ' . ($alias != '' && $cfg['ShowTooltipAliasTB'] ? $alias : htmlspecialchars($table)) . '
' . "\n"; } else { - $table_list .= ' ' . ($alias != '' && $cfg['ShowTooltipAliasTB'] ? $alias : htmlspecialchars($table)) . '
' . "\n"; + $table_list .= ' ' . ($alias != '' && $cfg['ShowTooltipAliasTB'] ? $alias : htmlspecialchars($table)) . '
' . "\n"; } } // end for $t (tables list)