diff options
author | Byron Jones <glob@mozilla.com> | 2015-03-05 05:57:51 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-03-05 05:57:51 +0100 |
commit | b7147b778824e13a15f912fdf458bf3959d439e5 (patch) | |
tree | 1deddd019fb15747dacc3067d0c2606f864fc41c /template/en/default/global | |
parent | f6686ca1edfe4a233c7f39836e265d466bda37b7 (diff) | |
download | bugzilla-b7147b778824e13a15f912fdf458bf3959d439e5.tar.gz bugzilla-b7147b778824e13a15f912fdf458bf3959d439e5.tar.xz |
Bug 1128853: Bugzilla shouldn't try to write API tokens into the shadow DB
r=dkl,a=glob
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/header.html.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 5c731c008..5b3cd03f3 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -20,6 +20,7 @@ # style_urls: list. List of URLs to CSS style sheets. # message: string. A message to display to the user. May contain HTML. # atomlink: Atom link URL, May contain HTML + # generate_api_token: generate a token which can be used to make authenticated webservice calls #%] [% IF message %] @@ -37,6 +38,7 @@ no_yui = 0 jquery = [] jquery_css = [] + generate_api_token = 0 %] [% IF NOT no_yui %] @@ -206,7 +208,7 @@ version_required: "You must select a Version for this [% terms.bug %]." } - [% IF javascript_urls.containsany(['js/bug.js', 'js/field.js', 'js/comment-tagging.js']) %] + [% IF generate_api_token %] , api_token: '[% get_api_token FILTER js FILTER html %]' [% END %] }; |