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:
authorPiotr Przybylski <piotrprz@gmail.com>2011-08-03 01:13:39 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-08-03 01:14:52 +0400
commit0427378a0531e3d568a6ae60266d49318ff2310b (patch)
tree96514cd49ed0df9acaf19640254a12190924ec98 /server_variables.php
parent663d073e6be9630bd99e3684705d9182c36112b1 (diff)
Allow to use noclick class on table level
Diffstat (limited to 'server_variables.php')
-rw-r--r--server_variables.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/server_variables.php b/server_variables.php
index dcbe19267e..ceced1493e 100644
--- a/server_variables.php
+++ b/server_variables.php
@@ -102,7 +102,7 @@ isSuperuser = <?php echo PMA_isSuperuser()?'true':'false'; ?>;
<input name="filterText" type="text" id="filterText" style="vertical-align: baseline;" />
</div>
</fieldset>
-<table id="serverVariables" class="data filteredData">
+<table id="serverVariables" class="data filteredData noclick">
<thead>
<tr><th><?php echo __('Variable'); ?></th>
<th class="valueHeader">
@@ -118,7 +118,7 @@ echo __('Session value') . ' / ' . __('Global value');
$odd_row = true;
foreach ($serverVars as $name => $value) {
?>
-<tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; ?>">
+<tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
<th nowrap="nowrap"><?php echo htmlspecialchars(str_replace('_', ' ', $name)); ?></th>
<td class="value"><?php echo formatVariable($name,$value); ?></td>
<td class="value"><?php
@@ -129,7 +129,7 @@ foreach ($serverVars as $name => $value) {
if (isset($serverVarsSession[$name]) && $serverVarsSession[$name] != $value) {
?>
</tr>
-<tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; ?> ">
+<tr class="<?php echo $odd_row ? 'odd' : 'even'; ?> ">
<td>(<?php echo __('Session value'); ?>)</td>
<td class="value"><?php echo formatVariable($name,$serverVarsSession[$name]); ?></td>
<td class="value"></td>