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 /server_variables.php
parentfd7fb4875f8b7c0e78f14ccc6e46f54e753488cf (diff)
Do not highlight rows of these tables
Diffstat (limited to 'server_variables.php')
-rw-r--r--server_variables.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_variables.php b/server_variables.php
index fefa1196f5..f601fe80e9 100644
--- a/server_variables.php
+++ b/server_variables.php
@@ -62,7 +62,7 @@ echo __('Session value') . ' / ' . __('Global value');
$odd_row = true;
foreach ($serverVars as $name => $value) {
?>
-<tr class="<?php
+<tr class="noclick <?php
echo $odd_row ? 'odd' : 'even';
if ($serverVarsGlobal[$name] !== $value) {
echo ' marked';