Skip to content

Commit

Permalink
Fix Birt Viewer Frameset inside a Iframe (#1233)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpease authored Mar 27, 2023
1 parent b3158c9 commit b3c6767
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1575,8 +1575,10 @@ Ajax.Request = Class.create(Ajax.Base, {
$H(extras).each(function(pair) { headers[pair.key] = pair.value });
}

for (var name in headers)
for (var name in headers) {
if (name != "Connection")
this.transport.setRequestHeader(name, headers[name]);
}
},

success: function() {
Expand Down

0 comments on commit b3c6767

Please sign in to comment.