Skip to content

Commit

Permalink
Add ID attribute to bugnote_text textareas
Browse files Browse the repository at this point in the history
Fixes #22571
  • Loading branch information
libregeek authored and dregad committed Mar 23, 2017
1 parent a9abb28 commit 4d6f58a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bug_actiongroup_add_note_inc.php
Expand Up @@ -71,7 +71,7 @@ function action_add_note_print_fields() {
<?php echo lang_get( 'add_bugnote_title' ); ?>
</th>
<td>
<textarea class="form-control" name="bugnote_text" cols="80" rows="10"></textarea>
<textarea class="form-control" name="bugnote_text" id="bugnote_text" cols="80" rows="10"></textarea>
</td>
</tr>

Expand Down
2 changes: 1 addition & 1 deletion bug_actiongroup_page.php
Expand Up @@ -369,7 +369,7 @@
<?php echo lang_get( 'add_bugnote_title' ); ?>
</th>
<td>
<textarea class="form-control" name="bugnote_text" cols="80" rows="10"></textarea>
<textarea class="form-control" name="bugnote_text" id="bugnote_text" cols="80" rows="10"></textarea>
</td>
</tr>
<?php
Expand Down
2 changes: 1 addition & 1 deletion bug_change_status_page.php
Expand Up @@ -360,7 +360,7 @@
<?php echo lang_get( 'add_bugnote_title' ) ?>
</th>
<td>
<textarea class="form-control" name="bugnote_text" cols="80" rows="10"></textarea>
<textarea class="form-control" name="bugnote_text" id="bugnote_text" cols="80" rows="10"></textarea>
</td>
</tr>
<?php
Expand Down

0 comments on commit 4d6f58a

Please sign in to comment.