#1763 closed defect (bug) (fixed)
Link visibility radiobuttons belong to two different classes
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 1.6 |
| Component: | Administration | Keywords: | |
| Focuses: | Cc: |
Description
{{{ <td><label>
<input type="radio" name="link_visible" value="Y" />
Yes</label><br /><label>
<input type="radio" name="visible" checked='checked' value="N" />
No</label></td>
}}}
This is on the Edit Link page, at the bottom. You can't set a link to visible because the names are incompatible.
Change History (2)
Note: See
TracTickets for help on using
tickets.
Index: edit-link-form.php =================================================================== --- edit-link-form.php (revision 2951) +++ edit-link-form.php (working copy) @@ -216,7 +216,7 @@ <td><label> <input type="radio" name="link_visible" <?php if ($link->link_visible == 'Y') echo "checked='checked'"; ?> value="Y" /> <?php _e('Yes') ?></label><br /><label> -<input type="radio" name="visible" <?php if ($link->link_visible == 'N') echo "checked='checked'"; ?> value="N" /> +<input type="radio" name="link_visible" <?php if ($link->link_visible == 'N') echo "checked='checked'"; ?> value="N" /> <?php _e('No') ?></label></td> </tr> </table>