rfe #1340812 [interface] Show numbers of columns in table structure.
This commit is contained in:
@@ -22,6 +22,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
||||
+ rfe #1954161 [interface] Do not display long numbers in server status.
|
||||
+ rfe #2033616 [edit] Add option to just display insert query.
|
||||
+ rfe #1435032 [interface] Move SSL status to the end, it is usually empty.
|
||||
+ rfe #1340812 [interface] Show numbers of columns in table structure.
|
||||
|
||||
3.3.0.0 (not yet released)
|
||||
+ rfe #2308632 [edit] Use hex for (var)binary fields,
|
||||
|
@@ -164,6 +164,7 @@ $i = 0;
|
||||
<thead>
|
||||
<tr>
|
||||
<th id="th<?php echo ++$i; ?>"></th>
|
||||
<th id="th<?php echo ++$i; ?>">#</th>
|
||||
<th id="th<?php echo ++$i; ?>"><?php echo $strField; ?></th>
|
||||
<th id="th<?php echo ++$i; ?>"><?php echo $strType; ?></th>
|
||||
<th id="th<?php echo ++$i; ?>"><?php echo $strCollation; ?></th>
|
||||
@@ -330,6 +331,9 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
|
||||
<td align="center">
|
||||
<input type="checkbox" name="selected_fld[]" value="<?php echo htmlspecialchars($row['Field']); ?>" id="checkbox_row_<?php echo $rownum; ?>" <?php echo $checked; ?> />
|
||||
</td>
|
||||
<td align="right">
|
||||
<?php echo $rownum; ?>
|
||||
</td>
|
||||
<th nowrap="nowrap"><label for="checkbox_row_<?php echo $rownum; ?>"><?php echo $field_name; ?></label></th>
|
||||
<td<?php echo $type_nowrap; ?>><bdo dir="ltr" xml:lang="en"><?php echo $type; echo $type_mime; ?></bdo></td>
|
||||
<td><?php echo (empty($field_charset) ? '' : '<dfn title="' . PMA_getCollationDescr($field_charset) . '">' . $field_charset . '</dfn>'); ?></td>
|
||||
|
Reference in New Issue
Block a user