diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 01:00:35 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 01:00:35 +0200 |
commit | e53a0306d13924509b1be2085028a4213d861a20 (patch) | |
tree | c817c3d65acbef91a1e48a7a7d4e56e096ee4d7a /data/lib/rhbzpage.js | |
parent | 4964705f6918eda4cf4c310d261d95242bd2f0ad (diff) | |
download | bugzilla-triage-e53a0306d13924509b1be2085028a4213d861a20.tar.gz |
Two small typos
* it is config.XorgLogAnalysis not lowercase one
* timeSheetRecordsPrinter needs to be declared, otherwise it is not
available inside of the logger.js module itself.
Diffstat (limited to 'data/lib/rhbzpage.js')
-rw-r--r-- | data/lib/rhbzpage.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/lib/rhbzpage.js b/data/lib/rhbzpage.js index a82d975..ec562df 100644 --- a/data/lib/rhbzpage.js +++ b/data/lib/rhbzpage.js @@ -199,7 +199,7 @@ function sendBugUpstream() { * @return none */ function addCheckXorgLogLink(attList) { - if (config.xorglogAnalysis) { + if (config.XorgLogAnalysis) { attList.forEach(function (row) { var elemS = row[4].getElementsByTagName("td"); var elem = elemS[elemS.length - 1]; |