diff options
author | Tooru Fujisawa <arai.unmht@gmail.com> | 2017-01-13 23:27:58 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2017-01-13 23:28:09 +0100 |
commit | f1ad5506428db19b46a7d95d956e6ce477019036 (patch) | |
tree | 9c2255abf6e88a3a5655b442c53e8cd3161a753c /extensions/BugModal/template/en/default | |
parent | 68ec2dce72189b4699fd69f5716438075ff61fe9 (diff) | |
download | bugzilla-f1ad5506428db19b46a7d95d956e6ce477019036.tar.gz bugzilla-f1ad5506428db19b46a7d95d956e6ce477019036.tar.xz |
Bug 1329511 - Any link to user-entered URL with target="_blank" should have rel="noopener" or rel="noreferrer"
Diffstat (limited to 'extensions/BugModal/template/en/default')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl index 4f9dd60b5..f5074dbfa 100644 --- a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl @@ -332,7 +332,7 @@ "$terms.bug $see_also.bug_id" FILTER bug_link(see_also.bug_id); ELSE; %] - <a href="[% see_also.url FILTER html %]" target="_blank">[% see_also.url FILTER html %]</a> + <a href="[% see_also.url FILTER html %]" target="_blank" rel="noreferrer">[% see_also.url FILTER html %]</a> [% END; ", " UNLESS loop.last; |