Skip to content

Commit

Permalink
Add label tags so that Ascending/Descending are clickable in user prefs.
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Dec 11, 2008
1 parent 4eaeb80 commit 9dd0f66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions account_prefs_inc.php
Expand Up @@ -127,8 +127,8 @@ function edit_account_prefs($p_user_id = null, $p_error_if_protected = true, $p_
<?php echo lang_get( 'bugnote_order' ) ?>
</td>
<td>
<input type="radio" name="bugnote_order" value="ASC" <?php check_checked( $t_pref->bugnote_order, 'ASC' ); ?> /><?php echo lang_get( 'bugnote_order_asc' ) ?>
<input type="radio" name="bugnote_order" value="DESC" <?php check_checked( $t_pref->bugnote_order, 'DESC' ); ?> /><?php echo lang_get( 'bugnote_order_desc' ) ?>
<label><input type="radio" name="bugnote_order" value="ASC" <?php check_checked( $t_pref->bugnote_order, 'ASC' ); ?> /><?php echo lang_get( 'bugnote_order_asc' ) ?></label>
<label><input type="radio" name="bugnote_order" value="DESC" <?php check_checked( $t_pref->bugnote_order, 'DESC' ); ?> /><?php echo lang_get( 'bugnote_order_desc' ) ?></label>
</td>
</tr>
<?php
Expand Down

0 comments on commit 9dd0f66

Please sign in to comment.