Changeset 3729 for trunk/wp-admin/edit-link-form.php
- Timestamp:
- 04/19/2006 09:31:58 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-link-form.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-form.php
r3684 r3729 75 75 </div> 76 76 77 < fieldset id="uridiv">78 < legend><?php _e('URI:') ?></legend>79 < div><input type="text" name="link_url" value="<?php echo $link->link_url; ?>" style="width: 95%" /></div>80 < /fieldset>81 82 < fieldset id="namediv">83 < legend><?php _e('Name:') ?></legend>84 < div><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></div>85 </ fieldset>86 87 < fieldset id="descdiv">88 < legend><?php _e('Description:') ?></legend>89 < div><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></div>90 </ fieldset>77 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 78 <tr> 79 <th width="20%" scope="row" valign="top"><label for="link_url"><?php _e('URI:') ?></label></th> 80 <td width="80%"><input type="text" name="link_url" value="<?php echo $link->link_url; ?>" style="width: 95%" /></td> 81 </tr> 82 <tr> 83 <th scope="row" valign="top"><label for="link_name"><?php _e('Name:') ?></label></th> 84 <td><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></td> 85 </tr> 86 <tr> 87 <th scope="row" valign="top"><label for="link_description"><?php _e('Description:') ?></label></th> 88 <td><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></td> 89 </tr> 90 </table> 91 91 92 92 <p class="submit"> … … 101 101 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 102 102 <tr> 103 <th width=" 33%" scope="row"><?php _e('rel:') ?></th>104 <td width=" 67%"><input type="text" name="link_rel" id="link_rel" size="50" value="<?php echo $link->link_rel; ?>" /></td>103 <th width="20%" scope="row"><?php _e('rel:') ?></th> 104 <td width="80%"><input type="text" name="link_rel" id="link_rel" size="50" value="<?php echo $link->link_rel; ?>" /></td> 105 105 </tr> 106 106 <tr> … … 214 214 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 215 215 <tr> 216 <th width=" 33%" scope="row"><?php _e('Image URI:') ?></th>217 <td width=" 67%"><input type="text" name="link_image" size="50" value="<?php echo $link->link_image; ?>" style="width: 95%" /></td>216 <th width="20%" scope="row"><?php _e('Image URI:') ?></th> 217 <td width="80%"><input type="text" name="link_image" size="50" value="<?php echo $link->link_image; ?>" style="width: 95%" /></td> 218 218 </tr> 219 219 <tr>
Note: See TracChangeset
for help on using the changeset viewer.