Do not highlight rows of these tables

This commit is contained in:
Madhura Jayaratne
2011-03-15 20:35:53 +05:30
parent fd7fb4875f
commit 326f13827b
11 changed files with 27 additions and 27 deletions

View File

@@ -65,7 +65,7 @@ if (empty($_REQUEST['engine'])
*/
$odd_row = true;
foreach (PMA_StorageEngine::getStorageEngines() as $engine => $details) {
echo '<tr class="'
echo '<tr class="noclick '
. ($odd_row ? 'odd' : 'even')
. ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED'
? ' disabled'
@@ -83,7 +83,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="'
echo '<tr class="noclick '
. ($odd_row ? 'odd' : 'even')
. '">' . "\n"
. ' <td><a href="./server_engines.php'
@@ -91,7 +91,7 @@ if (empty($_REQUEST['engine'])
. ' ' . "PBMS\n"
. ' </a></td>' . "\n"
. ' <td>' . htmlspecialchars("PrimeBase MediaStream (PBMS) daemon") . '</td>' . "\n"
. '</tr>' . "\n";
. '</tr>' . "\n";
}
unset($odd_row, $engine, $details);