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
{{ message }}
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
In example when the query string contains something like this: "?name=value&név=érték" in internet explorer the browser does not send it as utf-8 encoded, the result is "?name=value&n?v=?rt?k".
It is a known bug in Internet Explorer browsers.
Possible workaround is checking return value of filterQueryOrFragment() for null value (because filterQueryOrFragment() returns null on failure) and call filterQueryOrFragment() again but the input have to run through utf8_encode() function. All together: filterQueryOrFragment(utf8_encode(<query_string_here>)).
As far as I know other browsers are not affected by this bug, e.g.: Mozilla Firefox, Google Chrome, Opera browser (current versions).
The text was updated successfully, but these errors were encountered:
In example when the query string contains something like this: "?name=value&név=érték" in internet explorer the browser does not send it as utf-8 encoded, the result is "?name=value&n?v=?rt?k".
It is a known bug in Internet Explorer browsers.
Possible workaround is checking return value of
filterQueryOrFragment()
for null value (becausefilterQueryOrFragment()
returns null on failure) and callfilterQueryOrFragment()
again but the input have to run throughutf8_encode()
function. All together:filterQueryOrFragment(utf8_encode(<query_string_here>))
.As far as I know other browsers are not affected by this bug, e.g.: Mozilla Firefox, Google Chrome, Opera browser (current versions).
The text was updated successfully, but these errors were encountered: