#809 closed defect (bug) (fixed)
HTML "label for" mismatch with "input id" in bb-admin/options-general.php
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | 0.9 | Priority: | normal |
| Severity: | normal | Version: | 1.0-rc-2 |
| Component: | General - Administration | Keywords: | |
| Cc: |
Description
<label for="editing">
should have the same value as
<input id="edit_lock">
<label for="editing">
<?php _e('Lock post editing after:') ?>
</label>
<div>
<input class="text" name="edit_lock" id="edit_lock" value="<?php bb_form_option('edit_lock'); ?>" />
<?php _e('minutes') ?>
<p>A user can edit a post for this many minutes after submitting.</p>
</div>
Change History (2)
Note: See
TracTickets for help on using
tickets.
(In [1261]) label/id mismatch for edit_lock. Fixes #809