diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-29 13:38:04 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-04-29 13:38:04 +0200 |
commit | 58d631cdccdda18ec6071444e5df5a4a6c35cefe (patch) | |
tree | f8c7953d2b34c9ba5c83c75d31bbfc43fc0d83ed /data/lib/otherButtons.js | |
parent | e3989a9404d19fb5164b39f7f6c78e64cc85b137 (diff) | |
download | bugzilla-triage-58d631cdccdda18ec6071444e5df5a4a6c35cefe.tar.gz |
Incompatibility bits.
* global onMessage is not chic anymore, replacing with self.on handler.
* filterByRegexp returns string and could return null. Make sure we can
survive it.
Diffstat (limited to 'data/lib/otherButtons.js')
-rw-r--r-- | data/lib/otherButtons.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/lib/otherButtons.js b/data/lib/otherButtons.js index ab8ec35..0e7b408 100644 --- a/data/lib/otherButtons.js +++ b/data/lib/otherButtons.js @@ -78,7 +78,7 @@ function addingEmbelishments(list) { var maintCCAddr = ""; if (constantData.CCmaintainer) { maintCCAddr = filterByRegexp(constantData.CCmaintainer, - getComponent())[0]; // filterByRegexp returns array, not string + getComponent()); // filterByRegexp returns string, not array, now } // we should make visible whether maintCCAddr is in CCList |