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-04-17 16:40:00 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-04-17 16:40:00 +0400
commit9fe549c6b659cbbc5b54f9ed528726cc6f34cb25 (patch)
treeb8f9b29bd16fed3e576a7993265ad904dcb2a0d2 /server_collations.php
parentabb0324123cdf6bf54d6813c609256877b4811f2 (diff)
Add class="noclick" for rows in collation lists
Diffstat (limited to 'server_collations.php')
-rw-r--r--server_collations.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_collations.php b/server_collations.php
index 27fec06b4a..0adc4d3291 100644
--- a/server_collations.php
+++ b/server_collations.php
@@ -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="'
+ echo '<tr class="noclick '
. ($odd_row ? 'odd' : 'even')
. ($mysql_default_collations[$current_charset] == $current_collation
? ' marked'