• Resolved SiteBolts

    (@sitebolts)


    Hi there, we’re receiving this deprecation warning from your plugin in PHP 8.2 that’s flooding our error log.

    PHP Deprecated:  Using ${var} in strings is deprecated, use {$var} instead in wp-content/plugins/wp-user-frontend/wpuf-functions.php on line 4156

    I glanced through a few old threads and it looks like you fixed some similar warnings already, but I think you might have missed this one.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Md. Tanvir Chowdhury

    (@tanvir101)

    Hello @sitebolts,
    Thank you for bringing this to our attention.
    As you know, we have already fixed the previous deprecated codes. Our clients have not reported any issues with deprecated codes after the release. Moreover, I have forwarded this to our development team for further investigation.

    Since you are experiencing this issue on your site, we will need to check it thoroughly. Please contact us so that we can investigate and resolve the issue for you.

    Thank you for your understanding and cooperation.

    Thread Starter SiteBolts

    (@sitebolts)

    @tanvir101 – It’s not specific to our site.

    Here’s the spot you missed in wpuf-functions.php on line 4156:

    $success_query = "wpuf_${gateway}_success";

    That syntax is no longer valid in PHP 8.2. It should instead be replaced with:

    $success_query = "wpuf_{$gateway}_success";
    Plugin Support Md. Tanvir Chowdhury

    (@tanvir101)

    Hello @sitebolts,
    Appreciate your response and concern.
    Our developers has acknowledged it and will hopefully fix it on the next release.
    We expect your understanding and cooperation in this regard.
    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘PHP 8.2 deprecation warnings’ is closed to new replies.