Bug 1097798: Do not display the resolution in the dependency tree for open bugs, nor the target milestone if usetargetmilestone is off

r=dkl a=glob


git-svn-id: svn://10.0.0.236/trunk@265677 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzrmirror%bugzilla.org 2014-11-19 17:31:03 +00:00
parent c0bfa8bf8e
commit 65fb443e88
3 changed files with 7 additions and 4 deletions

View File

@ -1 +1 @@
9211 9212

View File

@ -1 +1 @@
259615dd0912f238868a78be5ed5f9c73e588964 ca99361e17e2ebc0a5bbb017a5c9cb347c49caae

View File

@ -152,9 +152,12 @@
[% END %] [% END %]
[% BLOCK buginfo %] [% BLOCK buginfo %]
[% display_value("bug_status", bug.bug_status) FILTER html -%] [%+ display_value("resolution", bug.resolution) FILTER html %]; [% display_value("bug_status", bug.bug_status) FILTER html -%]
[%- IF bug.resolution %] [%+ display_value("resolution", bug.resolution) FILTER html %][% END %];
[%-%] assigned to [% bug.assigned_to.login FILTER email FILTER html %] [%-%] assigned to [% bug.assigned_to.login FILTER email FILTER html %]
[%-%][% "; Target: " _ bug.target_milestone IF bug.target_milestone %] [% IF Param("usetargetmilestone") AND bug.target_milestone %]
[%-%]; target: [% bug.target_milestone FILTER html %]
[% END %]
[% END %] [% END %]
[%###########################################################################%] [%###########################################################################%]