• Resolved richplane

    (@richplane)


    Hey – it looks like there’s a really basic error in the code here:

    if ( $_GET['page'] == "thisismyurl_wordress_login_redirect.php" )

    on lines 160 & 172 of wordpress-login-redirect.php in the version I have.

    On the admin index page (dashboard), there’s no GET parameter, so we get an ugly notice when the function tries to work out if it’s on its settings page.

    You need to do a !empty() or is_set() or array_key_exists() check first.

    e.g.:
    if ( isset($_GET['page']) && $_GET['page'] == "thisismyurl_wordress_login_redirect.php" )

    http://wordpress.org/extend/plugins/wordpress-login-redirect/

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: WordPress Login Redirect] Notice: Undefined index: page’ is closed to new replies.