Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2011-03-15 18:05:53 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-03-15 18:05:53 +0300
commit326f13827b1779c310a93beb6ffc95404fbe1ff5 (patch)
treedfaf1791f8d0e5ec376998549780a7c8b717b1ee /db_search.php
parentfd7fb4875f8b7c0e78f14ccc6e46f54e753488cf (diff)
Do not highlight rows of these tables
Diffstat (limited to 'db_search.php')
-rw-r--r--db_search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_search.php b/db_search.php
index c401a4fa98..fba68d17fe 100644
--- a/db_search.php
+++ b/db_search.php
@@ -243,7 +243,7 @@ if (isset($_REQUEST['submit_search'])) {
$sql_query .= $newsearchsqls['select_count'];
- echo '<tr class="' . ($odd_row ? 'odd' : 'even') . '">'
+ echo '<tr class="noclick ' . ($odd_row ? 'odd' : 'even') . '">'
.'<td>' . sprintf(_ngettext('%s match inside table <i>%s</i>', '%s matches inside table <i>%s</i>', $res_cnt), $res_cnt,
htmlspecialchars($each_table)) . "</td>\n";