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:
authorJ.M <me@mynetx.net>2013-05-01 18:43:23 +0400
committerJ.M <me@mynetx.net>2013-05-01 18:43:23 +0400
commit6c8777f60444144ecbeef1b498f9262b58e772fc (patch)
tree33c2132859cef7d1d8f0b10548065fff275c903f /server_databases.php
parent3b100f4a2d5f1a6be22ce1fe173783e8647c989e (diff)
Don't use id attribute for checkall boxes, use class name
Diffstat (limited to 'server_databases.php')
-rw-r--r--server_databases.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/server_databases.php b/server_databases.php
index d7c6fe13c2..2cb2b4e2fc 100644
--- a/server_databases.php
+++ b/server_databases.php
@@ -321,8 +321,9 @@ if ($databases_count > 0) {
$html .= '<img class="selectallarrow" src="'
. $pmaThemeImage . 'arrow_' . $text_dir . '.png"'
. ' width="38" height="22" alt="' . __('With selected:') . '" />' . "\n"
- . '<input type="checkbox" id="checkall" title="' . __('Check All') . '" /> '
- . '<label for="checkall">' . __('Check All') . '</label> '
+ . '<input type="checkbox" id="dbStatsForm_checkall" class="checkall_box" '
+ . 'title="' . __('Check All') . '" /> '
+ . '<label for="dbStatsForm_checkall">' . __('Check All') . '</label> '
. '<i style="margin-left: 2em">' . __('With selected:') . '</i>' . "\n";
$html .= PMA_Util::getButtonOrImage(
'',