We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See : https://github.com/yesinteractive/fsl/blob/master/lib/fsl.php#L1136 Something like this…:
function request_uri($env=null) { static $uri = null; if(is_null($env)) { if(!is_null($uri)) return $uri; $env = env(); } // retrieve $uri depending env $uri = rawurldecode(xss_filter($uri)); // store in static $uri variable return $uri; } if(!defined('xss_filter')) { function xss_filter($str) { // minimal filtering like https://stackoverflow.com/a/1741568 } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See : https://github.com/yesinteractive/fsl/blob/master/lib/fsl.php#L1136
Something like this…:
The text was updated successfully, but these errors were encountered: