wrong icon

This commit is contained in:
Alexander M. Turek
2005-03-03 21:04:45 +00:00
parent 94cdc26045
commit 30233c0dd3
2 changed files with 2 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ $Source$
2005-03-03 Alexander M. Turek <me@derrabus.de> 2005-03-03 Alexander M. Turek <me@derrabus.de>
* libraries/grab_globals.lib.php: Bug #1153079 (Updating columns starting * libraries/grab_globals.lib.php: Bug #1153079 (Updating columns starting
with "str"). with "str").
* header.inc.php: Wrong icon for views.
2005-03-02 Michal Čihař <michal@cihar.com> 2005-03-02 Michal Čihař <michal@cihar.com>
* libraries/export/sql.php, libraries/display_export.lib.php: Do not offer * libraries/export/sql.php, libraries/display_export.lib.php: Do not offer

View File

@@ -202,7 +202,7 @@ if (empty($GLOBALS['is_header_sent'])) {
. '<td class="serverinfo">' . ($GLOBALS['tbl_is_view'] ? $GLOBALS['strView'] : $GLOBALS['strTable']) . ':&nbsp;' . '<td class="serverinfo">' . ($GLOBALS['tbl_is_view'] ? $GLOBALS['strView'] : $GLOBALS['strTable']) . ':&nbsp;'
. '<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']) . '">';
if ($GLOBALS['cfg']['MainPageIconic']) { if ($GLOBALS['cfg']['MainPageIconic']) {
echo '<img src="' . $GLOBALS['pmaThemeImage'] . ($GLOBALS['tbl_is_view'] ? 'b_view' : 's_tbl') . '.png" width="16" height="16" border="0" alt="' . htmlspecialchars($GLOBALS['table']) . '" />'; echo '<img src="' . $GLOBALS['pmaThemeImage'] . ($GLOBALS['tbl_is_view'] ? 'b_views' : 's_tbl') . '.png" width="16" height="16" border="0" alt="' . htmlspecialchars($GLOBALS['table']) . '" />';
} }
echo htmlspecialchars($GLOBALS['table']) . '</a>' . "\n" echo htmlspecialchars($GLOBALS['table']) . '</a>' . "\n"
. '</td>' . "\n\n"; . '</td>' . "\n\n";