Merge branch 'QA_4_6'

This commit is contained in:
Michal Čihař 2016-03-09 09:13:45 +01:00
commit 16818f7ad3
2 changed files with 3 additions and 2 deletions

View File

@ -62,6 +62,7 @@ phpMyAdmin - ChangeLog
- issue #12041 Fixed exporting tables with fields DEFAULT and COMMENT
- issue #12073 Hide edit and delete buttons when the results are not related to a table
- issue #12083 Fixed parsing of field definition
- issue #12081 Fixed rendering of table stats
4.5.5.1 (2016-02-29)
- issue #11971 CREATE UNIQUE INDEX index type is not recognized by parser.

View File

@ -26,7 +26,7 @@
<?php endif; ?>
<?php if (isset($free_size)): ?>
<tr class="<?= ((!$odd_row) ? 'odd' : 'even'); ?>">
<tr class="<?= (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>">
<th class="name"><?= __('Overhead'); ?></th>
<td class="value"><?= $free_size; ?></td>
<td class="unit"><?= $free_unit; ?></td>
@ -76,4 +76,4 @@
)
?>
</fieldset>
</div>
</div>