diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-05-07 00:53:06 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:53:46 +0200 |
commit | 8e501abd49e5aeac70a84ceef96a72b5078df221 (patch) | |
tree | 2cb8df170588aaee5872b752d11d6a6c39a766cc /data/rhlib | |
parent | 59d6e1bf4e439febbc40c15486303e12febb7e42 (diff) | |
download | bugzilla-triage-8e501abd49e5aeac70a84ceef96a72b5078df221.tar.gz |
Another massive cleanup and simplification of tweak scripts.
bugs on bugzilla.mozilla.org now work as well, although the history is
still not shown inline, which remains for 1.1.
Fixes #88
Diffstat (limited to 'data/rhlib')
-rw-r--r-- | data/rhlib/rhbzpage.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/data/rhlib/rhbzpage.js b/data/rhlib/rhbzpage.js index 55314d5..bab9947 100644 --- a/data/rhlib/rhbzpage.js +++ b/data/rhlib/rhbzpage.js @@ -450,7 +450,7 @@ function parseBacktrace (ret) { return ""; } -function RHBZinit() { +function RHBZinit(attachments) { // inheritance ... call superobject's constructor var AbrtRE = new RegExp("^\\s*\\[abrt\\]"); var btSnippet = ""; @@ -460,7 +460,6 @@ function RHBZinit() { // getBadAttachments var XorgLogAttList = []; var XorgLogAttListIndex = 0; - var attachments = getAttachments(); markBadAttachments(attachments); var parsedAttachments = attachments.filter(function (att) { |