Skip to content

Commit

Permalink
Fix validation bug where label tag was missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daryn Warriner committed Feb 27, 2011
1 parent 93b581b commit f99beae
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bug_report_page.php
Expand Up @@ -226,7 +226,12 @@
?>
<tr <?php echo helper_alternate_class() ?>>
<th class="category" width="30%">
<?php echo config_get( 'allow_no_category' ) ? '' : '<span class="required">*</span><label for="category_id">'; print_documentation_link( 'category' ); echo '</label>' ?>
<?php
echo config_get( 'allow_no_category' ) ? '' : '<span class="required">*</span>';
echo '<label for="category_id">';
print_documentation_link( 'category' );
echo '</label>';
?>
</th>
<td width="70%">
<?php if ( $t_changed_project ) {
Expand Down

0 comments on commit f99beae

Please sign in to comment.