diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-02-19 20:43:49 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-02-19 20:43:49 +0100 |
commit | 18e8d99312c12a723d240ebf4bdd5fe2cb29f566 (patch) | |
tree | 9fbb68c4823c4d1ced11a07d7e01683d34009144 | |
parent | cd284d407bf4546c3fad0879dcb93a0bec6948e2 (diff) | |
download | bugzilla-18e8d99312c12a723d240ebf4bdd5fe2cb29f566.tar.gz bugzilla-18e8d99312c12a723d240ebf4bdd5fe2cb29f566.tar.xz |
Bug 1134736: urlbase must be HTML-filtered in rest.html.tmpl
r/a=dkl
-rw-r--r-- | template/en/default/rest.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/rest.html.tmpl b/template/en/default/rest.html.tmpl index 2afd50a40..f118e5da0 100644 --- a/template/en/default/rest.html.tmpl +++ b/template/en/default/rest.html.tmpl @@ -10,7 +10,7 @@ <html> <head> <title>Bugzilla::REST::API</title> - <link href="[% urlbase FILTER none %][% 'skins/standard/global.css' FILTER mtime %]" + <link href="[% urlbase FILTER html %][% 'skins/standard/global.css' FILTER mtime %]" rel="stylesheet" type="text/css"> </head> <body> |