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_collations.php
parent663d073e6be9630bd99e3684705d9182c36112b1 (diff)
Allow to use noclick class on table level
Diffstat (limited to 'server_collations.php')
-rw-r--r--server_collations.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/server_collations.php b/server_collations.php
index ccd41d41d3..71508be791 100644
--- a/server_collations.php
+++ b/server_collations.php
@@ -49,7 +49,7 @@ require_once './libraries/mysql_charsets.lib.php';
* Outputs the result
*/
echo '<div id="div_mysql_charset_collations">' . "\n"
- . '<table class="data">' . "\n"
+ . '<table class="data noclick">' . "\n"
. '<tr><th>' . __('Collation') . '</th>' . "\n"
. ' <th>' . __('Description') . '</th>' . "\n"
. '</tr>' . "\n";
@@ -61,7 +61,7 @@ foreach ($mysql_charsets as $current_charset) {
if ($i >= $table_row_count / 2) {
$i = 0;
echo '</table>' . "\n"
- . '<table class="data">' . "\n"
+ . '<table class="data noclick">' . "\n"
. '<tr><th>' . __('Collation') . '</th>' . "\n"
. ' <th>' . __('Description') . '</th>' . "\n"
. '</tr>' . "\n";
@@ -78,7 +78,7 @@ foreach ($mysql_charsets as $current_charset) {
$odd_row = true;
foreach ($mysql_collations[$current_charset] as $current_collation) {
$i++;
- echo '<tr class="noclick '
+ echo '<tr class="'
. ($odd_row ? 'odd' : 'even')
. ($mysql_default_collations[$current_charset] == $current_collation
? ' marked'