diff options
author | lpsolit%gmail.com <> | 2009-12-28 01:00:48 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-12-28 01:00:48 +0000 |
commit | e45f3148ef05b5f4faee77e4aedffabc7e49bb79 (patch) | |
tree | 2254b80aedf3b5673e23fab7622b842e641c9fbb /template | |
parent | Bug 475523: Fix instructions on whineatnews email to refer to correct show_bu... (diff) | |
download | bugzilla-e45f3148ef05b5f4faee77e4aedffabc7e49bb79.tar.gz bugzilla-e45f3148ef05b5f4faee77e4aedffabc7e49bb79.tar.bz2 bugzilla-e45f3148ef05b5f4faee77e4aedffabc7e49bb79.zip |
Bug 511216: Assignee is blank in Whine emails - Patch by Kent Rogers <kar@cray.com> r/a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/whine/mail.html.tmpl | 6 | ||||
-rw-r--r-- | template/en/default/whine/mail.txt.tmpl | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/template/en/default/whine/mail.html.tmpl b/template/en/default/whine/mail.html.tmpl index e1df9dbad..44795a55b 100644 --- a/template/en/default/whine/mail.html.tmpl +++ b/template/en/default/whine/mail.html.tmpl @@ -31,10 +31,6 @@ [% PROCESS global/variables.none.tmpl %] [% PROCESS 'global/field-descs.none.tmpl' %] -[%# assignee_login_string is a literal string used for getting the - # assignee's name out of the bug data %] -[% SET assignee_login_string="map_assigned_to.login_name" %] - <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> @@ -81,7 +77,7 @@ <td align="left">[% bug.bug_severity FILTER html %]</td> <td align="left">[% bug.priority FILTER html %]</td> <td align="left">[% bug.rep_platform FILTER html %]</td> - <td align="left">[% bug.$assignee_login_string FILTER html %]</td> + <td align="left">[% bug.assigned_to FILTER html %]</td> <td align="left">[% get_status(bug.bug_status) FILTER html %]</td> <td align="left">[% get_resolution(bug.resolution) FILTER html %]</td> <td align="left">[% bug.short_desc FILTER html %]</td> diff --git a/template/en/default/whine/mail.txt.tmpl b/template/en/default/whine/mail.txt.tmpl index 4375ee13b..9099f4a65 100644 --- a/template/en/default/whine/mail.txt.tmpl +++ b/template/en/default/whine/mail.txt.tmpl @@ -31,10 +31,6 @@ [% PROCESS global/variables.none.tmpl %] [% PROCESS 'global/field-descs.none.tmpl' %] -[%# assignee_login_string is a literal string used for getting the - # assignee's name out of the bug data %] -[% SET assignee_login_string="map_assigned_to.login_name" %] - [% body %] [% IF author.login == recipient.login %] @@ -56,7 +52,7 @@ Priority: [%+ bug.priority -%] Severity: [%+ bug.bug_severity -%] Platform: [%+ bug.rep_platform %] - Assignee: [%+ bug.$assignee_login_string %] + Assignee: [%+ bug.assigned_to %] Status: [%+ get_status(bug.bug_status) %] [%- IF bug.resolution -%] Resolution: [% get_resolution(bug.resolution) -%] [%- END %] |