mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-20 19:56:49 +01:00
Don't redirect back to permalink after editing from Edit This link. fixes #7503 for 2.6
git-svn-id: http://svn.automattic.com/wordpress/branches/2.6@8628 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bd0d60385d
commit
fa17bbccf1
|
|
@ -34,9 +34,7 @@ function redirect_page($page_ID) {
|
|||
} elseif (!empty($referredby) && $referredby != $referer) {
|
||||
$location = $_POST['referredby'];
|
||||
$location = remove_query_arg('_wp_original_http_referer', $location);
|
||||
if ( $_POST['referredby'] == 'redo' )
|
||||
$location = get_permalink( $page_ID );
|
||||
elseif ( false !== strpos($location, 'edit-pages.php') )
|
||||
if ( false !== strpos($location, 'edit-pages.php') )
|
||||
$location = add_query_arg('posted', $page_ID, $location);
|
||||
elseif ( false !== strpos($location, 'wp-admin') )
|
||||
$location = "page-new.php?posted=$page_ID";
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user