mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-17 20:15:08 +00:00
comment_post_redirect and comment_edit_redirect from Mark J. fixes #2590
git-svn-id: http://svn.automattic.com/wordpress/trunk@4260 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c0580ed6f7
commit
ac455f6df8
@ -177,12 +177,9 @@ case 'editedcomment':
|
|||||||
|
|
||||||
edit_comment();
|
edit_comment();
|
||||||
|
|
||||||
$referredby = $_POST['referredby'];
|
$location = ( empty($_POST['referredby']) ? "edit.php?p=$comment_post_ID&c=1" : $_POST['referredby'] ) . '#comment-' . $comment_ID;
|
||||||
if (!empty($referredby)) {
|
$location = apply_filters('comment_edit_redirect', $location, $comment_ID);
|
||||||
wp_redirect($referredby);
|
wp_redirect($location);
|
||||||
} else {
|
|
||||||
wp_redirect("edit.php?p=$comment_post_ID&c=1#comments");
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@ -57,8 +57,9 @@ if ( !$user->ID ) :
|
|||||||
setcookie('comment_author_url_' . COOKIEHASH, clean_url($comment->comment_author_url), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN);
|
setcookie('comment_author_url_' . COOKIEHASH, clean_url($comment->comment_author_url), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN);
|
||||||
endif;
|
endif;
|
||||||
|
|
||||||
$location = ( empty( $_POST['redirect_to'] ) ) ? get_permalink( $comment_post_ID ) : $_POST['redirect_to'];
|
$location = ( empty($_POST['redirect_to']) ? get_permalink($comment_post_ID) : $_POST['redirect_to'] ) . '#comment-' . $comment_id;
|
||||||
|
$location = apply_filters('comment_post_redirect', $location, $comment);
|
||||||
|
|
||||||
wp_redirect( $location );
|
wp_redirect($location);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user