diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-05-28 18:18:01 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:53:48 +0200 |
commit | 16b78ccadf021cc9255016ab5dac31558d28dea4 (patch) | |
tree | d957055044fe809179bb539803f8e159db3b2c95 /data/rhlib | |
parent | 33d482951cc12f6a9a1a9a1cd2c499692d7c2a4b (diff) | |
download | bugzilla-triage-16b78ccadf021cc9255016ab5dac31558d28dea4.tar.gz |
There shouldn't be a semicolon after object member.
Diffstat (limited to 'data/rhlib')
-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 e255381..b9325a1 100644 --- a/data/rhlib/rhbzpage.js +++ b/data/rhlib/rhbzpage.js @@ -193,7 +193,7 @@ function sendBugUpstream() { url: urlStr, subject: document.getElementById("short_desc_nonedit_display"). textContent.trim(), - comment: admitMsg + collectComments(); + comment: admitMsg + collectComments() })); } |