mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-03 20:09:40 +00:00
Fixed bug with pre-checking link target in edit mode.
git-svn-id: http://svn.automattic.com/wordpress/trunk@200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2d6891fca9
commit
c8b09c393e
@ -264,15 +264,15 @@ switch ($action) {
|
||||
<tr height="20">
|
||||
<td height="20" align="right">Target:</td>
|
||||
<td><label>
|
||||
<input type="radio" name="target" value="_blank">
|
||||
<input type="radio" name="target" value="_blank" <?php echo(($link_target == '_blank') ? 'checked="checked"' : ''); ?>>
|
||||
_blank</label>
|
||||
<label>
|
||||
<input type="radio" name="target" value="_top">
|
||||
_top</label>
|
||||
|
||||
<input type="radio" name="target" value="_top" <?php echo(($link_target == '_top') ? 'checked="checked"' : ''); ?>>
|
||||
_top</label>
|
||||
<label>
|
||||
<input type="radio" name="target" value="" checked="checked">
|
||||
none</label></td>
|
||||
<input type="radio" name="target" value="" <?php echo(($link_target == '') ? 'checked="checked"' : ''); ?>>
|
||||
none</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="20">
|
||||
<td height="20" align="right">Visible:</td>
|
||||
@ -584,4 +584,4 @@ LINKS;
|
||||
|
||||
|
||||
|
||||
<?php include('b2footer.php'); ?>
|
||||
<?php include('b2footer.php'); ?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user