[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_9RC1-24847-ge5c094d
    Rouslan Placella 
    roccivic at users.sourceforge.net
       
    Thu Dec 15 14:49:24 CET 2011
    
    
  
The branch, master has been updated
       via  e5c094d08030cf183c9b0cfbb1dc0414b26a42a7 (commit)
      from  cfc6039972ec41cdefe3dc9f1afdf500ed89ac6d (commit)
- Log -----------------------------------------------------------------
commit e5c094d08030cf183c9b0cfbb1dc0414b26a42a7
Author: Rouslan Placella <rouslan at 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
-- 
phpMyAdmin
    
    
More information about the Git
mailing list