• Everything on this plugin is working as expected even after 3 months with no updates, but there’s one little detail that should be fixed:

    301-redirects.php, line 55:
    $siteurl = get_bloginfo(‘siteurl’);

    This outputs the following warning when wp_debug is set to true:
    Notice: get_bloginfo was called with an argument that is deprecated since version 2.2.0! The siteurl option is deprecated for the family of bloginfo() functions. Use the url option instead.

    To solve this simply change it to:
    $siteurl = get_bloginfo(‘url’);

  • The topic ‘Using deprecated argument, everything else works fine.’ is closed to new replies.