Changeset 16008 for trunk/wp-login.php
- Timestamp:
- 10/27/2010 10:43:43 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-login.php
r16000 r16008 431 431 432 432 if ( is_wp_error($user) ) { 433 wp_redirect( 'wp-login.php?action=lostpassword&error=invalidkey');433 wp_redirect( site_url('wp-login.php?action=lostpassword&error=invalidkey') ); 434 434 exit; 435 435 } … … 485 485 if ( is_multisite() ) { 486 486 // Multisite uses wp-signup.php 487 wp_redirect( apply_filters( 'wp_signup_location', get_bloginfo('wpurl') . '/wp-signup.php') );487 wp_redirect( apply_filters( 'wp_signup_location', site_url('wp-signup.php') ) ); 488 488 exit; 489 489 } 490 490 491 491 if ( !get_option('users_can_register') ) { 492 wp_redirect( 'wp-login.php?registration=disabled');492 wp_redirect( site_url('wp-login.php?registration=disabled') ); 493 493 exit(); 494 494 }
Note: See TracChangeset
for help on using the changeset viewer.