The branch, master has been updated via e5c094d08030cf183c9b0cfbb1dc0414b26a42a7 (commit) from cfc6039972ec41cdefe3dc9f1afdf500ed89ac6d (commit)
- Log ----------------------------------------------------------------- commit e5c094d08030cf183c9b0cfbb1dc0414b26a42a7 Author: Rouslan Placella rouslan@placella.com Date: Thu Dec 15 13:48:57 2011 +0000
Rows in index list are not clickable
-----------------------------------------------------------------------
Summary of changes: libraries/Index.class.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libraries/Index.class.php b/libraries/Index.class.php index 6c6f8ba..e198bf6 100644 --- a/libraries/Index.class.php +++ b/libraries/Index.class.php @@ -454,7 +454,7 @@ class PMA_Index foreach ($indexes as $index) { $row_span = ' rowspan="' . $index->getColumnCount() . '" ';
- $r .= '<tr class="' . ($odd_row ? 'odd' : 'even') . '">'; + $r .= '<tr class="noclick ' . ($odd_row ? 'odd' : 'even') . '">';
if (! $print_mode) { $this_params = $GLOBALS['url_params']; @@ -498,7 +498,7 @@ class PMA_Index
foreach ($index->getColumns() as $column) { if ($column->getSeqInIndex() > 1) { - $r .= '<tr class="' . ($odd_row ? 'odd' : 'even') . '">'; + $r .= '<tr class="noclick ' . ($odd_row ? 'odd' : 'even') . '">'; } $r .= '<td>' . htmlspecialchars($column->getName()); if ($column->getSubPart()) {
hooks/post-receive