Make WordPress Core


Ignore:
Timestamp:
04/30/2009 11:09:26 PM (16 years ago)
Author:
azaozz
Message:

Fox layout in the tagret postbox on edit link screen

File:
1 edited

Legend:

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

    r11114 r11145  
    159159function link_target_meta_box($link) { ?>
    160160<fieldset><legend class="hidden"><?php _e('Target') ?></legend>
    161 <label for="link_target_blank" class="selectit">
     161<p><label for="link_target_blank" class="selectit">
    162162<input id="link_target_blank" type="radio" name="link_target" value="_blank" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> />
    163 <?php _e('<code>_blank</code> - new window or tab.'); ?></label><br />
    164 <label for="link_target_top" class="selectit">
     163<?php _e('<code>_blank</code> - new window or tab.'); ?></label></p>
     164<p><label for="link_target_top" class="selectit">
    165165<input id="link_target_top" type="radio" name="link_target" value="_top" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_top') ? 'checked="checked"' : ''); ?> />
    166 <?php _e('<code>_top</code> - current window or tab, with no frames.'); ?></label><br />
    167 <label for="link_target_none" class="selectit">
     166<?php _e('<code>_top</code> - current window or tab, with no frames.'); ?></label></p>
     167<p><label for="link_target_none" class="selectit">
    168168<input id="link_target_none" type="radio" name="link_target" value="" <?php echo ( isset( $link->link_target ) && ($link->link_target == '') ? 'checked="checked"' : ''); ?> />
    169 <?php _e('<code>_none</code> - same window or tab.'); ?></label>
     169<?php _e('<code>_none</code> - same window or tab.'); ?></label></p>
    170170</fieldset>
    171 <p><?php _e('Choose the frame your link targets.'); ?></p>
     171<p><?php _e('Choose the target frame for your link.'); ?></p>
    172172<?php
    173173}
Note: See TracChangeset for help on using the changeset viewer.