diff options
author | Reed Loden <reed@reedloden.com> | 2012-05-17 18:28:32 -0500 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2012-05-17 18:28:32 -0500 |
commit | d3a92bd63e702f066685ea03dec649c08e0ff6b2 (patch) | |
tree | bd6231f41cf1e19fe2bdd537a6c72f5ca3a578bb /js | |
parent | Bug 486255: Timezone is displayed incorrectly in outgoing email with SMTP for... (diff) | |
download | bugzilla-d3a92bd63e702f066685ea03dec649c08e0ff6b2.tar.gz bugzilla-d3a92bd63e702f066685ea03dec649c08e0ff6b2.tar.bz2 bugzilla-d3a92bd63e702f066685ea03dec649c08e0ff6b2.zip |
Bug 754561 - Tags should be escaped in the auto-complete form
[r=LpSolit a=LpSolit]
Diffstat (limited to 'js')
-rw-r--r-- | js/field.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/field.js b/js/field.js index 1e5595081..0824e2714 100644 --- a/js/field.js +++ b/js/field.js @@ -883,6 +883,7 @@ YAHOO.bugzilla.fieldAutocomplete = { var fieldAutoComp = new YAHOO.widget.AutoComplete(field, container, this.dataSource[field]); fieldAutoComp.maxResultsDisplayed = YAHOO.bugzilla.field_array[field].length; + fieldAutoComp.formatResult = fieldAutoComp.formatEscapedResult; fieldAutoComp.minQueryLength = 0; fieldAutoComp.useIFrame = true; fieldAutoComp.delimChar = [","," "]; |