No reason to have ids on these elements

This commit is contained in:
Marc Delisle 2012-03-24 08:45:01 -04:00
parent f14e391663
commit d172dbdf2e

View File

@ -196,19 +196,19 @@ $i = 0;
<table id="tablestructure" class="data">
<thead>
<tr>
<th id="th<?php echo ++$i; ?>"></th>
<th id="th<?php echo ++$i; ?>">#</th>
<th id="th<?php echo ++$i; ?>" class="column"><?php echo __('Name'); ?></th>
<th id="th<?php echo ++$i; ?>" class="type"><?php echo __('Type'); ?></th>
<th id="th<?php echo ++$i; ?>" class="collation"><?php echo __('Collation'); ?></th>
<th id="th<?php echo ++$i; ?>" class="attributes"><?php echo __('Attributes'); ?></th>
<th id="th<?php echo ++$i; ?>" class="null"><?php echo __('Null'); ?></th>
<th id="th<?php echo ++$i; ?>" class="default"><?php echo __('Default'); ?></th>
<th id="th<?php echo ++$i; ?>" class="extra"><?php echo __('Extra'); ?></th>
<th></th>
<th>#</th>
<th class="column"><?php echo __('Name'); ?></th>
<th class="type"><?php echo __('Type'); ?></th>
<th class="collation"><?php echo __('Collation'); ?></th>
<th class="attributes"><?php echo __('Attributes'); ?></th>
<th class="null"><?php echo __('Null'); ?></th>
<th class="default"><?php echo __('Default'); ?></th>
<th class="extra"><?php echo __('Extra'); ?></th>
<?php if ($db_is_information_schema || $tbl_is_view) { ?>
<th id="th<?php echo ++$i; ?>" class="view"><?php echo __('View'); ?></th>
<th class="view"><?php echo __('View'); ?></th>
<?php } else { ?>
<th colspan="7" id="th<?php echo ++$i; ?>" class="action"><?php echo __('Action'); ?></th>
<th colspan="7" class="action"><?php echo __('Action'); ?></th>
<?php } ?>
</tr>
</thead>