Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix error on reporting issues w/ tags field hidden
Fixes #9450
  • Loading branch information
vboctor committed Apr 21, 2016
1 parent fd47e9c commit f008b8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bug_report.php
Expand Up @@ -137,8 +137,8 @@
$f_report_stay = gpc_get_bool( 'report_stay', false );
$f_copy_notes_from_parent = gpc_get_bool( 'copy_notes_from_parent', false );
$f_copy_attachments_from_parent = gpc_get_bool( 'copy_attachments_from_parent', false );
$f_tag_select = gpc_get_int( 'tag_select' );
$f_tag_string = gpc_get_string( 'tag_string' );
$f_tag_select = gpc_get_int( 'tag_select', 0 );
$f_tag_string = gpc_get_string( 'tag_string', '' );

if( access_has_project_level( config_get( 'roadmap_update_threshold' ), $t_bug_data->project_id ) ) {
$t_bug_data->target_version = gpc_get_string( 'target_version', '' );
Expand Down

0 comments on commit f008b8d

Please sign in to comment.