diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-06-07 19:06:05 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-06-07 19:06:05 +0200 |
commit | 3102cb94e097e20a6592527feaaf1fa039274f42 (patch) | |
tree | 46ff394a50313ba91e5a233789c5ce8e4146be3a /lib/bzpage.js | |
parent | 67bdce8805063717bfdbc449e5d8974f32f288a2 (diff) | |
download | bugzilla-triage-3102cb94e097e20a6592527feaaf1fa039274f42.tar.gz |
Fix creation of non-existent logstore
Diffstat (limited to 'lib/bzpage.js')
-rw-r--r-- | lib/bzpage.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js index 8f11eb5..b02d03c 100644 --- a/lib/bzpage.js +++ b/lib/bzpage.js @@ -664,9 +664,9 @@ BZPage.prototype.setUpLogging = function() { console.log("this.store wiped out!"); }, false); - if (!this.store) { + if (!this.log.store) { console.log("No this.store defined!"); - this.store = {}; + this.log.store = {}; } if (this.log.store.length > 0) { |