diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-24 17:26:16 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-24 17:26:16 +0000 |
commit | 88b1575eb1e61d98fda5c164800cb132a174282c (patch) | |
tree | 8322794708de0641855d43791201f6166dc1180f | |
parent | 26b6b596c2ccfe7daf69cf03b6a91d258cc311b7 (diff) | |
download | brdo-88b1575eb1e61d98fda5c164800cb132a174282c.tar.gz brdo-88b1575eb1e61d98fda5c164800cb132a174282c.tar.bz2 |
#578544 by yched: Move field creation widgets into the same columns as existing fields.
-rw-r--r-- | modules/field_ui/field_ui-field-overview-form.tpl.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/field_ui/field_ui-field-overview-form.tpl.php b/modules/field_ui/field_ui-field-overview-form.tpl.php index 178e51513..781119d36 100644 --- a/modules/field_ui/field_ui-field-overview-form.tpl.php +++ b/modules/field_ui/field_ui-field-overview-form.tpl.php @@ -68,9 +68,9 @@ </div> </td> <td><div class="new"> </div><?php print $row->weight . $row->hidden_name; ?></td> - <td colspan="2"><div class="new"> </div><?php print $row->field_name; ?></td> + <td><div class="new"> </div><?php print $row->field_name; ?></td> <td><div class="new"> </div><?php print $row->type; ?></td> - <td colspan="2"><div class="new"> </div><?php print $row->widget_type; ?></td> + <td colspan="3"><div class="new"> </div><?php print $row->widget_type; ?></td> <?php break; case 'add_existing_field': ?> @@ -81,8 +81,8 @@ </div> </td> <td><div class="new"> </div><?php print $row->weight . $row->hidden_name; ?></td> - <td colspan="3"><div class="new"> </div><?php print $row->field_name; ?></td> - <td colspan="2"><div class="new"> </div><?php print $row->widget_type; ?></td> + <td colspan="2"><div class="new"> </div><?php print $row->field_name; ?></td> + <td colspan="3"><div class="new"> </div><?php print $row->widget_type; ?></td> <?php break; endswitch; ?> </tr> |