The branch, QA_3_4 has been updated via a6fc7ac92836e6e25cb8efc98c014a0e3a7e55ca (commit) from 6fec80c61445dc11b4ff3023947b9882e163d382 (commit)
- Log ----------------------------------------------------------------- -----------------------------------------------------------------------
Summary of changes: ChangeLog | 1 + navigation.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 100a933..9ffe264 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ phpMyAdmin - ChangeLog - bug #3418610 [interface] Links in navigation when $cfg['MainPageIconic'] = false - bug #3418849 [interface] Inline edit shows dropdowns even after closing - bug [view] View renaming did not work +- bug [navi] Wrong icon for view (MySQL 5.5)
3.4.6.0 (not yet released) - patch #3404173 InnoDB comment display with tooltips/aliases diff --git a/navigation.php b/navigation.php index ea77489..a607f28 100644 --- a/navigation.php +++ b/navigation.php @@ -625,7 +625,8 @@ function PMA_displayTableList($tables, $visible = false, .'&goto=' . $GLOBALS['cfg']['LeftDefaultTabTable'] . '" >' .'<img class="icon"'; - if ('VIEW' === strtoupper($table['Comment'])) { + + if (PMA_Table::isView($table_db, $table['Name'])) { echo ' src="' . $GLOBALS['pmaThemeImage'] . 's_views.png"'; } else { echo ' src="' . $GLOBALS['pmaThemeImage'] . 'b_sbrowse.png"';
hooks/post-receive