Make WordPress Core

Changeset 3257


Ignore:
Timestamp:
12/02/2005 05:32:07 PM (19 years ago)
Author:
ryan
Message:

Use correct ids. Props filosofo. fixes #2016

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-link-form.php

    r3207 r3257  
    204204           <th scope="row"><?php _e('Target') ?></th>
    205205           <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"' : ''); ?> />
    207207          <code>_blank</code></label><br />
    208208<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"' : ''); ?> />
    210210<code>_top</code></label><br />
    211211<label>
     
    219219             <input type="radio" name="link_visible" <?php if ($link->link_visible == 'Y') echo "checked='checked'"; ?> value="Y" />
    220220<?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" />
    222222<?php _e('No') ?></label></td>
    223223         </tr>
Note: See TracChangeset for help on using the changeset viewer.