From: Randy Reddekopp Date: Tue, 19 Apr 2011 13:27:54 +0000 (+0200) Subject: Bug 641519: userAutocomplete is not compatible with Bugzilla configured to use "local... X-Git-Tag: bugzilla-4.0.1~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bcfbf821709f3dae6e7f96424c1b30b45ac35df2;p=thirdparty%2Fbugzilla.git Bug 641519: userAutocomplete is not compatible with Bugzilla configured to use "local" usernames r/a=mkanat --- diff --git a/js/field.js b/js/field.js index 56084e7e17..d457cf8118 100644 --- a/js/field.js +++ b/js/field.js @@ -664,7 +664,7 @@ YAHOO.bugzilla.userAutocomplete = { id : YAHOO.bugzilla.userAutocomplete.counter, params : [ { match : [ decodeURIComponent(enteredText) ], - include_fields : [ "email", "real_name" ] + include_fields : [ "name", "real_name" ] } ] }; var stringified = YAHOO.lang.JSON.stringify(json_object); @@ -674,7 +674,7 @@ YAHOO.bugzilla.userAutocomplete = { return stringified; }, resultListFormat : function(oResultData, enteredText, sResultMatch) { - return ( _escapeHTML(oResultData.real_name) + " (" + _escapeHTML(oResultData.email) + ")"); + return ( _escapeHTML(oResultData.real_name) + " (" + _escapeHTML(oResultData.name) + ")"); }, debug_helper : function ( ){ /* used to help debug any errors that might happen */ @@ -693,7 +693,7 @@ YAHOO.bugzilla.userAutocomplete = { resultsList : "result.users", metaFields : { error: "error", jsonRpcId: "id"}, fields : [ - { key : "email" }, + { key : "name" }, { key : "real_name"} ] };