Viewing 3 replies - 1 through 3 (of 3 total)
  • Yes indeed!

    Backtrace: http://pastebin.com/ZcRVMw0j

    First culprit: /wp-content/plugins/better-wp-security/inc/secure.php line 367

    Change:

    $wpdb->escape( $this->getIp() )

    to this:

    esc_sql( $this->getIp() )

    … then do a search-replace for other instances of $wpdb->escape. I found 12 others in that file I think.

    Thread Starter igov

    (@igov)

    If i do it, next time when i get plugin update i should do it again. Better ask the author.

    same here. Thanks Eric for the quick advice. Please, dear developers, include these changes in your next update. Now everything is clean 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Usage of deprecated WP method’ is closed to new replies.