diff options
author | Christian Legnitto <clegnitto@mozilla.com> | 2010-10-28 15:19:51 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-10-28 15:19:51 +0200 |
commit | a6041007c544e7b2a8ae703c8e45e635e2ace991 (patch) | |
tree | 0491fa7a4263d959e95781bcaf007338f5984a0a /js | |
parent | 178eb04938393f06f60ee1a21df5d2a955c93634 (diff) | |
download | bugzilla-a6041007c544e7b2a8ae703c8e45e635e2ace991.tar.gz bugzilla-a6041007c544e7b2a8ae703c8e45e635e2ace991.tar.xz |
Bug 585802: Change the cc/user autocomplete (and backend) usermatching to ignore spaces / search on space separated names
r/a=mkanat
Diffstat (limited to 'js')
-rw-r--r-- | js/field.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/field.js b/js/field.js index a70e41a64..6d78a60ce 100644 --- a/js/field.js +++ b/js/field.js @@ -724,7 +724,7 @@ YAHOO.bugzilla.userAutocomplete = { userAutoComp.useIFrame = true; userAutoComp.resultTypeList = false; if( multiple == true ){ - userAutoComp.delimChar = [","," "]; + userAutoComp.delimChar = [","]; } } |