aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-09-14 22:21:00 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-09-14 22:21:00 +0200
commitd6392709f209e5b63cafd47d59ffa0c0182487ed (patch)
tree9463f1b18807afa2e4affe74283f1ce350462dfc
parentf2f034c968d00874c234c0ce20bb9a2a978a8e61 (diff)
downloadbugzilla-triage-d6392709f209e5b63cafd47d59ffa0c0182487ed.tar.gz
Fixed number of lines in the head of the Xorg.0.log analysis
Fixes #48
-rw-r--r--lib/rhbzpage.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js
index 5e8291d..cb3f636 100644
--- a/lib/rhbzpage.js
+++ b/lib/rhbzpage.js
@@ -657,10 +657,11 @@ RHBugzillaPage.prototype.analyzeXorgLog = function analyzeXorgLog(attachID) {
return (that.RE.soughtLines.test(line));
});
// Remove headers
- if (results.length >= 3) {
- results.splice(0, 3);
+ if (results.length >= 1) {
+ results.splice(0, 1);
}
if (results.length > 0) {
+
results.forEach(function(l) {
preElem.innerHTML += l + "\n";
});