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
mattab opened this issue
May 11, 2013
· 2 comments
Labels
duplicateFor issues that already existed in our issue tracker and were reported previously.TaskIndicates an issue is neither a feature nor a bug and it's purely a "technical" change.
AS part of #2135 I discovered the joy of inconsistencies between browsers (Firefox decodes URL hash, while others don't) and inconsistencies in PHP (_GET is URL decoded by default, so we can use _SERVER[QUERY_STRING] to access raw value.
To prevent further problems in the future and keep other devs from experiencing my pain, I'd like to change the codebase so that no one uses _GET or _POST directly but always ask a helper method.
The text was updated successfully, but these errors were encountered:
duplicateFor issues that already existed in our issue tracker and were reported previously.TaskIndicates an issue is neither a feature nor a bug and it's purely a "technical" change.
AS part of #2135 I discovered the joy of inconsistencies between browsers (Firefox decodes URL hash, while others don't) and inconsistencies in PHP (_GET is URL decoded by default, so we can use _SERVER[QUERY_STRING] to access raw value.
To prevent further problems in the future and keep other devs from experiencing my pain, I'd like to change the codebase so that no one uses _GET or _POST directly but always ask a helper method.
The text was updated successfully, but these errors were encountered: