diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-06-06 16:14:52 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-06 16:14:52 +0200 |
commit | 75848ce166959a4e38c5191522b15e35706d3202 (patch) | |
tree | b7b3618e156d24fba0c28e0fbe5ebe3cc7aed6e8 /data/lib/util.js | |
parent | 06c5c60704fb181cf870c04cb79b2d6275600f06 (diff) | |
download | bugzilla-triage-75848ce166959a4e38c5191522b15e35706d3202.tar.gz |
Make check link working again.
Diffstat (limited to 'data/lib/util.js')
-rw-r--r-- | data/lib/util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/lib/util.js b/data/lib/util.js index f30ddd5..b128d48 100644 --- a/data/lib/util.js +++ b/data/lib/util.js @@ -247,7 +247,7 @@ function ISODateString(d) { * @return position of the string in the list, or -1 if none found. */ function isInList(mbr, list) { - if (!list) { + if (!Array.isArray(list)) { return false; } return (list.indexOf(mbr) !== -1); |