Closed bezumkin closed 1 year ago
We were able to enter urls with special character to manager like /products/Laadplatform-Dranghekken-%7C-3350-%7C-Incl.-dranghekken.html
/products/Laadplatform-Dranghekken-%7C-3350-%7C-Incl.-dranghekken.html
It would be decoded and stored as /products/Laadplatform-Dranghekken-|-3350-|-Incl.-dranghekken.html
/products/Laadplatform-Dranghekken-|-3350-|-Incl.-dranghekken.html
But when you navigate to this address, redirect would not work, because it was retrieved from $_GET instead $_REQUEST.
$_GET
$_REQUEST
Now it is fixed.
We were able to enter urls with special character to manager like
/products/Laadplatform-Dranghekken-%7C-3350-%7C-Incl.-dranghekken.html
It would be decoded and stored as
/products/Laadplatform-Dranghekken-|-3350-|-Incl.-dranghekken.html
But when you navigate to this address, redirect would not work, because it was retrieved from
$_GET
instead$_REQUEST
.Now it is fixed.