From a4e3261b663c2087030aa5afca5c07580689c64f Mon Sep 17 00:00:00 2001 From: Reed Loden Date: Tue, 7 Jun 2011 22:11:27 +0200 Subject: Bug 657194: Use YUI's escapeHTML() instead of our custom one r=mkanat a=LpSolit --- js/field.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'js') diff --git a/js/field.js b/js/field.js index 949c210a3..1a3bc3efd 100644 --- a/js/field.js +++ b/js/field.js @@ -669,13 +669,6 @@ function browserCanHideOptions(aSelect) { /* (end) option hiding code */ -// A convenience function to sanitize raw text for harmful HTML before outputting -function _escapeHTML(text) { - return text.replace(/&/g, '&'). - replace(//g, '>'); -} - /** * The Autoselect */ @@ -701,7 +694,8 @@ YAHOO.bugzilla.userAutocomplete = { return stringified; }, resultListFormat : function(oResultData, enteredText, sResultMatch) { - return ( _escapeHTML(oResultData.real_name) + " (" + _escapeHTML(oResultData.name) + ")"); + return ( YAHOO.lang.escapeHTML(oResultData.real_name) + " (" + + YAHOO.lang.escapeHTML(oResultData.name) + ")"); }, debug_helper : function ( ){ /* used to help debug any errors that might happen */ -- cgit v1.2.3-24-g4f1b