diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-03-25 19:19:07 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-03-25 19:19:07 +0100 |
commit | 18763039c1fd5baa5c857fa594c832bdd9b3ba6d (patch) | |
tree | 4ee1bc597f54f6038d3322eea530d45438842483 /data/lib/otherButtons.js | |
parent | f167ed681ed2de8492c2159f2ea588ab6c44d40d (diff) | |
download | bugzilla-triage-18763039c1fd5baa5c857fa594c832bdd9b3ba6d.tar.gz |
Fix order of parameters of fixAttachById function. XMLRPCURL is mandatory.
Fixes #73
Diffstat (limited to 'data/lib/otherButtons.js')
-rw-r--r-- | data/lib/otherButtons.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/lib/otherButtons.js b/data/lib/otherButtons.js index b7bb7d5..bc445bf 100644 --- a/data/lib/otherButtons.js +++ b/data/lib/otherButtons.js @@ -87,7 +87,7 @@ function addingEmbelishments(list) { // Add find chip magic button var whiteboard_string = document.getElementById("status_whiteboard").value; if (!/card_/.test(whiteboard_string)) { - fillInChipMagic(XorgLogAttList[0][1]); + fillInChipMagic(list[0][1]); } } } |