Changeset 11145 for trunk/wp-admin/edit-link-form.php
- Timestamp:
- 04/30/2009 11:09:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-form.php
r11114 r11145 159 159 function link_target_meta_box($link) { ?> 160 160 <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"> 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 <?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"> 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 <?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"> 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('<code>_none</code> - same window or tab.'); ?></label> 169 <?php _e('<code>_none</code> - same window or tab.'); ?></label></p> 170 170 </fieldset> 171 <p><?php _e('Choose the frame your link targets.'); ?></p>171 <p><?php _e('Choose the target frame for your link.'); ?></p> 172 172 <?php 173 173 }
Note: See TracChangeset
for help on using the changeset viewer.