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_engines.php
parent663d073e6be9630bd99e3684705d9182c36112b1 (diff)
Allow to use noclick class on table level
Diffstat (limited to 'server_engines.php')
-rw-r--r--server_engines.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/server_engines.php b/server_engines.php
index c66877765f..4e5eeb3f0d 100644
--- a/server_engines.php
+++ b/server_engines.php
@@ -50,7 +50,7 @@ if (empty($_REQUEST['engine'])
/**
* Displays the table header
*/
- echo '<table>' . "\n"
+ echo '<table class="noclick">' . "\n"
. '<thead>' . "\n"
. '<tr><th>' . __('Storage Engine') . '</th>' . "\n"
. ' <th>' . __('Description') . '</th>' . "\n"
@@ -64,7 +64,7 @@ if (empty($_REQUEST['engine'])
*/
$odd_row = true;
foreach (PMA_StorageEngine::getStorageEngines() as $engine => $details) {
- echo '<tr class="noclick '
+ echo '<tr class="'
. ($odd_row ? 'odd' : 'even')
. ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED'
? ' disabled'
@@ -82,7 +82,7 @@ if (empty($_REQUEST['engine'])
$PMA_Config = $GLOBALS['PMA_Config'];
if ($PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) {
// Special case for PBMS daemon which is not listed as an engine
- echo '<tr class="noclick '
+ echo '<tr class="'
. ($odd_row ? 'odd' : 'even')
. '">' . "\n"
. ' <td><a href="./server_engines.php'