The branch, master has been updated via 2c3fa8aa7cbc11d353b58922aa86e23f1ad06899 (commit) from 65d869023e2aa27f2289807550f7cbacacb5285c (commit)
- Log ----------------------------------------------------------------- commit 2c3fa8aa7cbc11d353b58922aa86e23f1ad06899 Author: Piotr Przybylski piotrprz@gmail.com Date: Tue May 3 14:14:57 2011 +0200
Don't display More for views and information_schema tables
-----------------------------------------------------------------------
Summary of changes: tbl_structure.php | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/tbl_structure.php b/tbl_structure.php index 73374d7..fce4f39 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -466,8 +466,7 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) { <?php } // end if... else... echo "\n"; - } // end if (! $tbl_is_view && ! $db_is_information_schema) - ?> + ?> <td class="more_opts" id="more_opts<?php echo $rownum; ?>"> <?php echo __('More'); ?> <img src="<?php echo $pmaThemeImage . 'more.png'; ?>" alt="<?php echo __('Show more actions'); ?>" /> <div class="structure_actions_dropdown" id="row_<?php echo $rownum; ?>"> @@ -531,6 +530,9 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) { </div> </div> </td> + <?php + } // end if (! $tbl_is_view && ! $db_is_information_schema) + ?> </tr> <?php unset($field_charset);
hooks/post-receive