diff options
Diffstat (limited to 'wp-admin/edit-link-form.php')
| -rw-r--r-- | wp-admin/edit-link-form.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/wp-admin/edit-link-form.php b/wp-admin/edit-link-form.php index bd226e7..e281d30 100644 --- a/wp-admin/edit-link-form.php +++ b/wp-admin/edit-link-form.php @@ -43,7 +43,7 @@ function xfn_check($class, $value = '', $type = 'check') { <h3 class="dbx-handle"><?php _e('Categories') ?></h3> <div class="dbx-content"> <p id="jaxcat"></p> -<ul id="categorychecklist"><?php dropdown_link_categories(get_option('default_link_category')); ?></ul> +<ul id="linkcategorychecklist"><?php dropdown_link_categories(get_option('default_link_category')); ?></ul> </div> </fieldset> @@ -80,15 +80,15 @@ function xfn_check($class, $value = '', $type = 'check') { <table class="editform" width="100%" cellspacing="2" cellpadding="5"> <tr> <th scope="row" valign="top"><label for="link_name"><?php _e('Name:') ?></label></th> -<td><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></td> +<td><input type="text" name="link_name" id="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></td> </tr> <tr> <th width="20%" scope="row" valign="top"><label for="link_url"><?php _e('Address:') ?></label></th> -<td width="80%"><input type="text" name="link_url" value="<?php echo $link->link_url; if ( empty( $link->link_url ) ) echo 'http://'; ?>" style="width: 95%" /></td> +<td width="80%"><input type="text" name="link_url" id="link_url" value="<?php echo $link->link_url; if ( empty( $link->link_url ) ) echo 'http://'; ?>" style="width: 95%" /></td> </tr> <tr> <th scope="row" valign="top"><label for="link_description"><?php _e('Description:') ?></label></th> -<td><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></td> +<td><input type="text" name="link_description" id="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></td> </tr> </table> @@ -241,6 +241,7 @@ function xfn_check($class, $value = '', $type = 'check') { </td> </tr> </table> +</div> </fieldset> </div> |
