Changeset 3257
- Timestamp:
- 12/02/2005 05:32:07 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-form.php
r3207 r3257 204 204 <th scope="row"><?php _e('Target') ?></th> 205 205 <td><label> 206 <input type="radio" name=" target" value="_blank" <?php echo(($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> />206 <input type="radio" name="link_target" value="_blank" <?php echo(($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> /> 207 207 <code>_blank</code></label><br /> 208 208 <label> 209 <input type="radio" name=" target" value="_top" <?php echo(($link->link_target == '_top') ? 'checked="checked"' : ''); ?> />209 <input type="radio" name="link_target" value="_top" <?php echo(($link->link_target == '_top') ? 'checked="checked"' : ''); ?> /> 210 210 <code>_top</code></label><br /> 211 211 <label> … … 219 219 <input type="radio" name="link_visible" <?php if ($link->link_visible == 'Y') echo "checked='checked'"; ?> value="Y" /> 220 220 <?php _e('Yes') ?></label><br /><label> 221 <input type="radio" name=" visible" <?php if ($link->link_visible == 'N') echo "checked='checked'"; ?> value="N" />221 <input type="radio" name="link_visible" <?php if ($link->link_visible == 'N') echo "checked='checked'"; ?> value="N" /> 222 222 <?php _e('No') ?></label></td> 223 223 </tr>
Note: See TracChangeset
for help on using the changeset viewer.