summaryrefslogtreecommitdiffstats
path: root/extensions/GuidedBugEntry/web/js/guided.js
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/GuidedBugEntry/web/js/guided.js')
-rw-r--r--extensions/GuidedBugEntry/web/js/guided.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/extensions/GuidedBugEntry/web/js/guided.js b/extensions/GuidedBugEntry/web/js/guided.js
index 339a6fc65..98ad6fd17 100644
--- a/extensions/GuidedBugEntry/web/js/guided.js
+++ b/extensions/GuidedBugEntry/web/js/guided.js
@@ -257,7 +257,8 @@ var product = {
id: ++this._counter,
params: {
names: [productName],
- exclude_fields: ['internals', 'milestones']
+ exclude_fields: ['internals', 'milestones'],
+ Bugzilla_api_token : (BUGZILLA.api_token ? BUGZILLA.api_token : '')
}
}
)
@@ -445,7 +446,8 @@ var dupes = {
id: ++this._counter,
params: {
ids: [ bugID ],
- cc : ccObject
+ cc : ccObject,
+ Bugzilla_api_token: (BUGZILLA.api_token ? BUGZILLA.api_token : '')
}
})
);
@@ -556,7 +558,8 @@ var dupes = {
summary: dupes.getSummary(),
limit: 12,
include_fields: [ "id", "summary", "status", "resolution",
- "update_token", "cc", "component" ]
+ "update_token", "cc", "component" ],
+ Bugzilla_api_token: (BUGZILLA.api_token ? BUGZILLA.api_token : '')
}
};