diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-06-06 13:30:49 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-06 13:30:49 +0200 |
commit | 2d67008193187991bb61de59597925f3b776df35 (patch) | |
tree | 161e9cb1bf86aa2659d5cc17589ca95ca7bb7cf4 /data/rhlib | |
parent | 04ae9089f8a4d92764455491bbbc9cb805580c73 (diff) | |
download | bugzilla-triage-2d67008193187991bb61de59597925f3b776df35.tar.gz |
Make fixing MIME types of attachments working again.
When the Attachment is suddenly object instead of an array.
Diffstat (limited to 'data/rhlib')
-rw-r--r-- | data/rhlib/fixingAttMIME.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/rhlib/fixingAttMIME.js b/data/rhlib/fixingAttMIME.js index 9834cfa..f61ddbd 100644 --- a/data/rhlib/fixingAttMIME.js +++ b/data/rhlib/fixingAttMIME.js @@ -78,11 +78,11 @@ function fixAttachById(id, XMLRPCURL, type, email) { * <TR> DOM jQuery element with a bad attachment * @return none */ -function addTextLink(row, xmlRpcUrl) { - var elemS = row[4].getElementsByTagName("td"); +function addTextLink(att, xmlRpcUrl) { + var elemS = att.element.getElementsByTagName("td"); var elem = elemS[elemS.length - 1]; createDeadLink("addFix2TextLink", "text", elem, fixAttachById, [ - row[1], xmlRpcUrl + att.id, xmlRpcUrl ], "br"); } |