Skip to content

Commit

Permalink
https://issues.apache.org/jira/browse/MYFACES-4685:
Browse files Browse the repository at this point in the history
Fix for non webkit browsers in the quirks code
  • Loading branch information
werpu committed Oct 29, 2024
1 parent 62ecd98 commit 53b0d1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ _MF_SINGLTN(_PFX_XHR + "_AjaxResponseQuirks", myfaces._impl.xhrCore._AjaxRespons
//we have to work around an xml parsing bug in Webkit
//see https://issues.apache.org/jira/browse/MYFACES-3061
if (!isWebkit) {
doc = (arguments.length > 3) ? arguments[3] : _Lang.parseXML(newData);
doc = _Lang.parseXML(newData);
}

if (!isWebkit && _Lang.isXMLParseError(doc)) {
Expand Down

0 comments on commit 53b0d1d

Please sign in to comment.