Skip to content

Commit

Permalink
Bug 1246864 - Unable to comment tickets with "WONTFIX" status without…
Browse files Browse the repository at this point in the history
… change the status on the experimental UI
  • Loading branch information
globau committed Feb 9, 2016
1 parent e3b96a1 commit 009b23d
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -66,6 +66,7 @@ END;
IF field_type == "";
field_type = -1;
END;
field_name = name;
IF prefix.defined;
name = prefix _ name;
END;
Expand Down Expand Up @@ -178,7 +179,7 @@ END;
[% IF values.defined %]
[% FOREACH v IN values %]
[% NEXT IF NOT v.is_active AND NOT value.contains(v.name).size %]
[% NEXT IF NOT bug.check_can_change_field(name, bug.${name}, v.name) %]
[% NEXT IF NOT bug.check_can_change_field(name, bug.${field_name}, v.name) %]
<option value="[% v.name FILTER html %]"
id="v[% v.id FILTER html %]_[% name FILTER html %]"
[% " selected" IF value.contains(v.name).size %]
Expand Down

0 comments on commit 009b23d

Please sign in to comment.