diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-05-28 18:18:01 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-05-28 18:18:01 +0200 |
commit | b21ce54137dd75f42d98b3b15178e8f0ea056a14 (patch) | |
tree | 4bc2db1569755e34bdc721e7f29aac420088a70a | |
parent | a1f943c59b010450fb16fbfe6760946f0d35f941 (diff) | |
download | bugzilla-triage-b21ce54137dd75f42d98b3b15178e8f0ea056a14.tar.gz |
There shouldn't be a semicolon after object member.
-rw-r--r-- | data/rhlib/rhbzpage.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rhlib/rhbzpage.js b/data/rhlib/rhbzpage.js index d7785dc..a943eee 100644 --- a/data/rhlib/rhbzpage.js +++ b/data/rhlib/rhbzpage.js @@ -191,7 +191,7 @@ function sendBugUpstream() { url: urlStr, subject: document.getElementById("short_desc_nonedit_display"). textContent.trim(), - comment: admitMsg + collectComments(); + comment: admitMsg + collectComments() })); } |