bednee / cooluri

GIT repository for TYPO3 extension CoolUri
7 stars 12 forks source link

wrong $_GET params after CoolUri::extractArraysFromParams #90

Closed mad-develop closed 5 years ago

mad-develop commented 5 years ago

URL: https://example.org/login/?return_url=%2F%3Fid%3D1%26foo%3Dbar should result as $_GET['return_url'] = "/?id=1&foo=bar"

instead you get: $_GET['return_url'] = "/?id=1" $_GET['foo'] = "bar"

easiest way to fix this would be to rawurlencode the values before using parse_str