diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 01:00:35 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:46:50 +0200 |
commit | 68de408908a2cec9b0df1f67fe91939747e774e7 (patch) | |
tree | 46c8aa43ad2b9b67d35cddd2e55c60428d2d657d /data/lib | |
parent | cb82da27fc37ebe74aa9678506e72eb1a7308ca3 (diff) | |
download | bugzilla-triage-68de408908a2cec9b0df1f67fe91939747e774e7.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')
-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 69317ff..5daeea7 100644 --- a/data/lib/rhbzpage.js +++ b/data/lib/rhbzpage.js @@ -201,7 +201,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]; |