Make WordPress Core


Ignore:
Timestamp:
11/14/2008 11:58:17 PM (17 years ago)
Author:
azaozz
Message:

Update styling on link pages, fix state saving for link cats, no green bg after quick editing a post fixes #8143

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-link-form.php

    r9699 r9703  
    374374<h3><label for="link_name"><?php _e('Name') ?></label></h3>
    375375<div class="inside">
    376     <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo $link->link_name; ?>" id="link_name" /><br />
    377     <?php _e('Example: Nifty blogging software'); ?>
     376    <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo $link->link_name; ?>" id="link_name" />
     377    <p><?php _e('Example: Nifty blogging software'); ?></p>
    378378</div>
    379379</div>
     
    382382<h3><label for="link_url"><?php _e('Web Address') ?></label></h3>
    383383<div class="inside">
    384     <input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" /><br />
    385     <?php _e('Example: <code>http://wordpress.org/</code> &#8212; don&#8217;t forget the <code>http://</code>'); ?>
     384    <input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" />
     385    <p><?php _e('Example: <code>http://wordpress.org/</code> &#8212; don&#8217;t forget the <code>http://</code>'); ?></p>
    386386</div>
    387387</div>
     
    390390<h3><label for="link_description"><?php _e('Description') ?></label></h3>
    391391<div class="inside">
    392     <input type="text" name="link_description" size="30" tabindex="1" value="<?php echo isset($link->link_description) ? $link->link_description : ''; ?>" id="link_description" /><br />
    393     <?php _e('This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'); ?>
     392    <input type="text" name="link_description" size="30" tabindex="1" value="<?php echo isset($link->link_description) ? $link->link_description : ''; ?>" id="link_description" />
     393    <p><?php _e('This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'); ?></p>
    394394</div>
    395395</div>
Note: See TracChangeset for help on using the changeset viewer.