diff options
author | jocuri%softhome.net <> | 2006-02-22 06:56:07 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2006-02-22 06:56:07 +0100 |
commit | 34159623742cea3107168167ff47b395b41c8e26 (patch) | |
tree | 4e62ec20e0d71938e2d2e669994f39286ab1e05c | |
parent | 22d91ae8829b9d914e793a41ab8b14b451988ae5 (diff) | |
download | bugzilla-34159623742cea3107168167ff47b395b41c8e26.tar.gz bugzilla-34159623742cea3107168167ff47b395b41c8e26.tar.xz |
Patch for bug 326060: Remove template check for flag.setter (it always exists) - patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org>, r=LpSolit, a=justdave.
-rw-r--r-- | template/en/default/attachment/list.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/attachment/show-multiple.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/bug/show.xml.tmpl | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/template/en/default/attachment/list.html.tmpl b/template/en/default/attachment/list.html.tmpl index 8734487a6..03368ce26 100644 --- a/template/en/default/attachment/list.html.tmpl +++ b/template/en/default/attachment/list.html.tmpl @@ -64,9 +64,7 @@ <i>none</i> [% ELSE %] [% FOREACH flag = attachment.flags %] - [% IF flag.setter %] - [% flag.setter.nick FILTER html %]: - [% END %] + [% flag.setter.nick FILTER html %]: [%+ flag.type.name FILTER html FILTER no_break %][% flag.status %] [%+ IF flag.status == "?" && flag.requestee %] ([% flag.requestee.nick FILTER html %]) diff --git a/template/en/default/attachment/show-multiple.html.tmpl b/template/en/default/attachment/show-multiple.html.tmpl index e2c918dbb..06cea8683 100644 --- a/template/en/default/attachment/show-multiple.html.tmpl +++ b/template/en/default/attachment/show-multiple.html.tmpl @@ -65,9 +65,7 @@ <i>no flags</i> [% ELSE %] [% FOREACH flag = a.flags %] - [% IF flag.setter %] - [% flag.setter.nick FILTER html %]: - [% END %] + [% flag.setter.nick FILTER html %]: [%+ flag.type.name FILTER html %][% flag.status %] [% IF flag.status == "?" && flag.requestee %] ([% flag.requestee.nick FILTER html %]) diff --git a/template/en/default/bug/show.xml.tmpl b/template/en/default/bug/show.xml.tmpl index 6fe3f3180..27fa175da 100644 --- a/template/en/default/bug/show.xml.tmpl +++ b/template/en/default/bug/show.xml.tmpl @@ -94,9 +94,7 @@ [% FOREACH flag = a.flags %] <flag name="[% flag.type.name FILTER xml %]" status="[% flag.status FILTER xml %]" - [% IF flag.setter %] - setter="[% flag.setter.email FILTER xml %]" - [% END %] + setter="[% flag.setter.email FILTER xml %]" [% IF flag.status == "?" && flag.requestee %] requestee="[% flag.requestee.email FILTER xml %]" [% END %] |