Fixed bug with pre-checking link target in edit mode.

git-svn-id: https://develop.svn.wordpress.org/trunk@200 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mike Little 2003-06-10 23:05:05 +00:00
parent 1dd7ee70d0
commit 790f0c6a78

View File

@ -264,15 +264,15 @@ switch ($action) {
<tr height="20"> <tr height="20">
<td height="20" align="right">Target:</td> <td height="20" align="right">Target:</td>
<td><label> <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> &nbsp; _blank</label> &nbsp;
<label> <label>
<input type="radio" name="target" value="_top"> <input type="radio" name="target" value="_top" <?php echo(($link_target == '_top') ? 'checked="checked"' : ''); ?>>
_top</label> _top</label> &nbsp;
&nbsp;
<label> <label>
<input type="radio" name="target" value="" checked="checked"> <input type="radio" name="target" value="" <?php echo(($link_target == '') ? 'checked="checked"' : ''); ?>>
none</label></td> none</label>
</td>
</tr> </tr>
<tr height="20"> <tr height="20">
<td height="20" align="right">Visible:</td> <td height="20" align="right">Visible:</td>
@ -584,4 +584,4 @@ LINKS;
<?php include('b2footer.php'); ?> <?php include('b2footer.php'); ?>