Introducing wp_safe_redirect(). fixes #4606 for trunk

git-svn-id: http://svn.automattic.com/wordpress/trunk@6131 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2007-09-18 22:23:16 +00:00
parent bbe284b1d1
commit dbd3d07274
3 changed files with 21 additions and 3 deletions

View File

@ -399,6 +399,24 @@ function wp_redirect($location, $status = 302) {
}
endif;
if ( !function_exists('wp_safe_redirect') ) :
/**
* performs a safe (local) redirect, using wp_redirect()
* @return void
**/
function wp_safe_redirect($location, $status = 302) {
if ( $location{0} == '/' ) {
if ( $location{1} == '/' )
$location = get_option('home') . '/';
} else {
if ( substr($location, 0, strlen(get_option('home'))) != get_option('home') )
$location = get_option('home') . '/';
}
wp_redirect($location, $status);
}
endif;
if ( !function_exists('wp_get_cookie_login') ):
function wp_get_cookie_login() {
if ( empty($_COOKIE[USER_COOKIE]) || empty($_COOKIE[PASS_COOKIE]) )

View File

@ -78,7 +78,7 @@ case 'logout' :
if ( isset( $_REQUEST['redirect_to'] ) )
$redirect_to = $_REQUEST['redirect_to'];
wp_redirect($redirect_to);
wp_safe_redirect($redirect_to);
exit();
break;
@ -324,7 +324,7 @@ default:
if ( !$using_cookie )
wp_setcookie($user_login, $user_pass, false, '', '', $rememberme);
do_action('wp_login', $user_login);
wp_redirect($redirect_to);
wp_safe_redirect($redirect_to);
exit();
} else {
if ( $using_cookie )

View File

@ -7,5 +7,5 @@ if ( get_magic_quotes_gpc() )
// 10 days
setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 864000, COOKIEPATH);
wp_redirect(wp_get_referer());
wp_safe_redirect(wp_get_referer());
?>