aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-07-28 18:09:47 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-07-28 18:09:47 +0200
commitb7ea22f4a15e3187011bd32aab8616bc1eb306b0 (patch)
tree98c0fd6741076e62ceb0f2a34434a124e8ea7b44
parente20b658ca5b63eeacc21a2182512980219bee3f1 (diff)
downloadbugzilla-triage-b7ea22f4a15e3187011bd32aab8616bc1eb306b0.tar.gz
Firefox 4.0 we have undeclared variable here.
-rw-r--r--lib/bzpage.js2
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;