diff options
author | Dylan William Hardison <dylan@hardison.net> | 2016-10-05 18:34:05 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2016-10-05 18:34:18 +0200 |
commit | 81aad4a9f0bb4976d174aeac849473e8f8f91724 (patch) | |
tree | c348374ef95e08b5865e631af437461bbd599219 | |
parent | 4be7f516a744bd81377b3b1c6c66a5cb897abd0d (diff) | |
download | bugzilla-81aad4a9f0bb4976d174aeac849473e8f8f91724.tar.gz bugzilla-81aad4a9f0bb4976d174aeac849473e8f8f91724.tar.xz |
Bug 1306908 - OpenGraph extension doesn't escape URLs properly
-rw-r--r-- | extensions/OpenGraph/template/en/default/hook/global/header-start.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/OpenGraph/template/en/default/hook/global/header-start.html.tmpl b/extensions/OpenGraph/template/en/default/hook/global/header-start.html.tmpl index 2a6ab37df..625c5a1b9 100644 --- a/extensions/OpenGraph/template/en/default/hook/global/header-start.html.tmpl +++ b/extensions/OpenGraph/template/en/default/hook/global/header-start.html.tmpl @@ -10,4 +10,4 @@ <meta property="og:type" content="website"> <meta property="og:image" content="[% urlbase FILTER none %]extensions/OpenGraph/web/bugzilla.png"> <meta property="og:title" content="[% title FILTER none %]"> -<meta property="og:url" content="[% Bugzilla.cgi.self_url FILTER none %]"> +<meta property="og:url" content="[% Bugzilla.cgi.self_url FILTER html %]"> |