Forums
Forums / Plugin: URL Params / Undefined array key using PHP 8.1
(@joewa1980)
4 years, 1 month ago
We’re seeing PHP Warnings for:
Any ideas how we can remedy this? Many thanks! Great plugin.
For anyone else experiencing the same issue while running PHP 8.1 until a fix is release:
Line 98 original: if($_REQUEST[$param])
if($_REQUEST[$param])
Change to: if(isset($_REQUEST[$param]))
if(isset($_REQUEST[$param]))
The topic ‘Undefined array key using PHP 8.1’ is closed to new replies.