diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-07-28 18:09:47 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-07-28 18:09:47 +0200 |
commit | b7ea22f4a15e3187011bd32aab8616bc1eb306b0 (patch) | |
tree | 98c0fd6741076e62ceb0f2a34434a124e8ea7b44 /lib | |
parent | e20b658ca5b63eeacc21a2182512980219bee3f1 (diff) | |
download | bugzilla-triage-b7ea22f4a15e3187011bd32aab8616bc1eb306b0.tar.gz |
Firefox 4.0 we have undeclared variable here.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bzpage.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js index f281d78..981b641 100644 --- a/lib/bzpage.js +++ b/lib/bzpage.js @@ -954,7 +954,7 @@ BZPage.prototype.addToCCList = function addToCCList (who) { */ BZPage.prototype.getCCList = function getCCList () { var CCListSelect = this.doc.getElementById("cc"); - outCCList = []; + var outCCList = []; if (CCListSelect) { outCCList = Array.map(CCListSelect.options, function(item) { return item.value; |