diff options
author | David Lawrence <dkl@mozilla.com> | 2015-09-01 17:18:48 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-09-01 17:19:01 +0200 |
commit | 7c39ca2f98f2f5431713ad387849217f12cc03c2 (patch) | |
tree | dc6d9c05b522d202c032a76908f63c06e270e62c /extensions/REMO | |
parent | c5c9d675f6f1f121cd4c7aa3e96b99a3884caf88 (diff) | |
download | bugzilla-7c39ca2f98f2f5431713ad387849217f12cc03c2.tar.gz bugzilla-7c39ca2f98f2f5431713ad387849217f12cc03c2.tar.xz |
Bug 1200610: jsonrpc API requests do not work when "Require API-Key authentication for API requests" is enabled due to missing API tokens
Diffstat (limited to 'extensions/REMO')
-rw-r--r-- | extensions/REMO/template/en/default/pages/remo-form-payment.html.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/REMO/template/en/default/pages/remo-form-payment.html.tmpl b/extensions/REMO/template/en/default/pages/remo-form-payment.html.tmpl index ad5cbdb45..3994e13fd 100644 --- a/extensions/REMO/template/en/default/pages/remo-form-payment.html.tmpl +++ b/extensions/REMO/template/en/default/pages/remo-form-payment.html.tmpl @@ -125,7 +125,8 @@ function getBugInfo (e, div) { id: bug_id, params: { ids: [ bug_id ], - include_fields: [ 'product', 'component', 'status', 'summary' ] + include_fields: [ 'product', 'component', 'status', 'summary' ], + Bugzilla_api_token : (BUGZILLA.api_token ? BUGZILLA.api_token : '') } }) ); |