Ticket #6615: 6615.diff
| File 6615.diff, 1.7 KB (added by , 17 years ago) |
|---|
-
Users/Scott/Sites/wp/trunk/wp-admin/edit-link-form.php
160 160 <fieldset><legend class="hidden"><?php _e('Target') ?></legend> 161 161 <label for="link_target_blank" class="selectit"> 162 162 <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 < code>_blank</code></label><br />163 <?php _e('<code>_blank</code> - new window or tab.'); ?></label><br /> 164 164 <label for="link_target_top" class="selectit"> 165 165 <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 < code>_top</code></label><br />166 <?php _e('<code>_top</code> - current window or tab, with no frames.'); ?></label><br /> 167 167 <label for="link_target_none" class="selectit"> 168 168 <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(' none')?></label>169 <?php _e('<code>_none</code> - same window or tab.'); ?></label> 170 170 </fieldset> 171 <p><?php _e('Choose the frame your link targets. Essentially this means if you choose <code>_blank</code> your link will open in a new window.'); ?></p>171 <p><?php _e('Choose the frame your link targets.'); ?></p> 172 172 <?php 173 173 } 174 174 add_meta_box('linktargetdiv', __('Target'), 'link_target_meta_box', 'link', 'normal', 'core');