• Resolved Joe

    (@joewa1980)


    We’re seeing PHP Warnings for:

    • Undefined array key “artist” in /mywebsite.com/wp-content/plugins/url-
      params/urlparams.php on line 98
    • Any ideas how we can remedy this? Many thanks! Great plugin.

    • This topic was modified 2 years, 11 months ago by Joe.
Viewing 1 replies (of 1 total)
  • Thread Starter Joe

    (@joewa1980)

    For anyone else experiencing the same issue while running PHP 8.1 until a fix is release:

    Line 98 original:
    if($_REQUEST[$param])

    Change to:
    if(isset($_REQUEST[$param]))

Viewing 1 replies (of 1 total)
  • The topic ‘Undefined array key using PHP 8.1’ is closed to new replies.