diff options
author | Byron Jones <bjones@mozilla.com> | 2014-01-22 08:50:21 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2014-01-22 08:50:21 +0100 |
commit | 412d7c4f25611cf60810b5a3d26f0fef6b0c715f (patch) | |
tree | 9903f44a2c172853fa6f4a24232a867dc59c582c /extensions/BMO/web | |
parent | 7eaa20bf1fb447e14352bda6223d3c1b2257104b (diff) | |
download | bugzilla-412d7c4f25611cf60810b5a3d26f0fef6b0c715f.tar.gz bugzilla-412d7c4f25611cf60810b5a3d26f0fef6b0c715f.tar.xz |
Bug 961513: The featureĀ "Clone This Bug" does not work for users without canconfirm rights
Diffstat (limited to 'extensions/BMO/web')
-rw-r--r-- | extensions/BMO/web/js/edit_bug.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/BMO/web/js/edit_bug.js b/extensions/BMO/web/js/edit_bug.js index 16bef9890..6c044f9df 100644 --- a/extensions/BMO/web/js/edit_bug.js +++ b/extensions/BMO/web/js/edit_bug.js @@ -24,7 +24,7 @@ */ function init_clone_bug_menu(el, bug_id, product, component) { - var diff_url = 'enter_bug.cgi?cloned_bug_id=' + bug_id; + var diff_url = 'enter_bug.cgi?format=__default__&cloned_bug_id=' + bug_id; var cur_url = diff_url + '&product=' + encodeURIComponent(product) + '&component=' + encodeURIComponent(component); |