• tibodut

    (@tibodut)


    Hello world !

    I noticed that when using a “Copy” link under each site in the sites list view, it isn’t automatically selected in the dropdown list in the Blog Copier admin page.
    It turns out that in admin_page() function, the $nonce_string variable ignores the value of $ _GET [‘blog’].
    All that to say, it would be good to replace line 93:
    $ copy_id = 0;
    by:
    $copy_id = isset($_GET['blog']) ? (int)$_GET['blog'] : 0;

    Please excuse my poor english …

    http://wordpress.org/extend/plugins/blog-copier/

  • The topic ‘Blog Copier – blog's auto selection from copy link’ is closed to new replies.