You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HttpFoxService.js contains several regexps with "\b" and "\s" - these do not
result in the intended behavior because they are ASCII Backspace and "s",
respectively. Double backslashing or the /regexp/ form should be used.
re = new RegExp('\bname="([^"]+)"', "i");
re = new RegExp('\bname=([^\s:;]+)', "i");
re = new RegExp('\b(filename="[^"]*")', "i");
re = new RegExp('\b(filename=[^\s:;]+)', "i");
re = new RegExp('\b(Content-type:\s*"[^"]+)"', "i");
re = new RegExp('\b(Content-Type:\s*[^\s:;]+)', "i");
Original issue reported on code.google.com by [email protected] on 12 Oct 2012 at 12:55
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 12 Oct 2012 at 12:55The text was updated successfully, but these errors were encountered: