diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-02-22 17:34:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-22 17:34:20 +0100 |
commit | dc8462848e2b6849c36f81abbda57d210dded7bd (patch) | |
tree | a37228ded2e94befc71424615560044fe17f6f3a /Bugzilla | |
parent | 25ecc3f6d2da80619401db4123ab56ed26a9b771 (diff) | |
download | bugzilla-dc8462848e2b6849c36f81abbda57d210dded7bd.tar.gz bugzilla-dc8462848e2b6849c36f81abbda57d210dded7bd.tar.xz |
Bug 1440107 - Allow 'self' frames in bug modal again (fix socorro lens)
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/CGI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 513d8c302..26b7bcbc5 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -69,7 +69,7 @@ sub SHOW_BUG_MODAL_CSP { # This is from extensions/OrangeFactor/web/js/orange_factor.js 'https://brasstacks.mozilla.com/orangefactor/api/count', ], - frame_src => [ 'none', ], + frame_src => [ 'self', ], worker_src => [ 'none', ], ); if (use_attachbase() && $bug_id) { |