Commit d3a92bd6 authored by Reed Loden's avatar Reed Loden

Bug 754561 - Tags should be escaped in the auto-complete form

[r=LpSolit a=LpSolit]
parent 7236a646
...@@ -883,6 +883,7 @@ YAHOO.bugzilla.fieldAutocomplete = { ...@@ -883,6 +883,7 @@ YAHOO.bugzilla.fieldAutocomplete = {
var fieldAutoComp = var fieldAutoComp =
new YAHOO.widget.AutoComplete(field, container, this.dataSource[field]); new YAHOO.widget.AutoComplete(field, container, this.dataSource[field]);
fieldAutoComp.maxResultsDisplayed = YAHOO.bugzilla.field_array[field].length; fieldAutoComp.maxResultsDisplayed = YAHOO.bugzilla.field_array[field].length;
fieldAutoComp.formatResult = fieldAutoComp.formatEscapedResult;
fieldAutoComp.minQueryLength = 0; fieldAutoComp.minQueryLength = 0;
fieldAutoComp.useIFrame = true; fieldAutoComp.useIFrame = true;
fieldAutoComp.delimChar = [","," "]; fieldAutoComp.delimChar = [","," "];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment