diff options
author | bugreport%peshkin.net <> | 2005-10-08 13:58:54 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2005-10-08 13:58:54 +0200 |
commit | b26634d776066be7e6e358bfff0bad4a25a27d51 (patch) | |
tree | 797b1ae187c0bc4d44276cfd9c170a2a1d83fc4b /template/en/default | |
parent | 1ba2db8af58cfbe8c521e83e9ca1f3468500f07f (diff) | |
download | bugzilla-b26634d776066be7e6e358bfff0bad4a25a27d51.tar.gz bugzilla-b26634d776066be7e6e358bfff0bad4a25a27d51.tar.xz |
Bug 28398 Gotta be more careful when emailing state changes of dependent bugs
Patch by André Batosti <batosti@async.com.br>
r=lpsolit, a=justdave
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/process/bugmail.html.tmpl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/template/en/default/bug/process/bugmail.html.tmpl b/template/en/default/bug/process/bugmail.html.tmpl index a2a6e7353..a5d20e78d 100644 --- a/template/en/default/bug/process/bugmail.html.tmpl +++ b/template/en/default/bug/process/bugmail.html.tmpl @@ -62,11 +62,15 @@ [% BLOCK emails %] <b>[% description FILTER html %]:</b> - [% IF names.size > 0 %] - [%+ FOREACH name = names %] - [% name FILTER html %][% ", " UNLESS loop.last() %] + [% IF user.can_see_bug(mailing_bugid) %] + [% IF names.size > 0 %] + [%+ FOREACH name = names %] + [% name FILTER html %][% ", " UNLESS loop.last() %] + [% END %] + [% ELSE %] + no one [% END %] [% ELSE %] - no one + (list of e-mails not avaliable) [% END %] [% END %] |