diff options
| author | mkanat%bugzilla.org <> | 2009-01-29 21:22:19 +0000 |
|---|---|---|
| committer | mkanat%bugzilla.org <> | 2009-01-29 21:22:19 +0000 |
| commit | fc293fbd39f14308fbccd0cf9b523664ae813761 (patch) | |
| tree | 2eff5448dfbcf0fb0a0671fad80da0752db8f727 /template/en/default/request | |
| parent | 25e6018ac8a6cf1a99b299fe60ce6c5b1e1d61e6 (diff) | |
| download | bugs-fc293fbd39f14308fbccd0cf9b523664ae813761.tar bugs-fc293fbd39f14308fbccd0cf9b523664ae813761.tar.gz bugs-fc293fbd39f14308fbccd0cf9b523664ae813761.tar.bz2 bugs-fc293fbd39f14308fbccd0cf9b523664ae813761.tar.xz bugs-fc293fbd39f14308fbccd0cf9b523664ae813761.zip | |
Bug 219021: Only display email addresses to logged-in users
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default/request')
| -rw-r--r-- | template/en/default/request/queue.html.tmpl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl index af911b2ef..8dd0f0400 100644 --- a/template/en/default/request/queue.html.tmpl +++ b/template/en/default/request/queue.html.tmpl @@ -157,7 +157,8 @@ to some group are shown by default. [% PROCESS global/footer.html.tmpl %] [% BLOCK start_new_table %] - <h3>[% column_headers.$group_field %]: [% (request.$group_field || "None") FILTER html %]</h3> + <h3>[% column_headers.$group_field %]: + [%+ (request.$group_field || "None") FILTER email FILTER html %]</h3> <table class="requests" cellspacing="0" cellpadding="4" border="1"> <tr> [% FOREACH column = display_columns %] @@ -190,11 +191,11 @@ to some group are shown by default. [% END %] [% BLOCK display_requestee %] - [% request.requestee FILTER html %] + [% request.requestee FILTER email FILTER html %] [% END %] [% BLOCK display_requester %] - [% request.requester FILTER html %] + [% request.requester FILTER email FILTER html %] [% END %] [% BLOCK display_created %] |
