Skip to content

Commit

Permalink
Don't redirect back to permalink after editing from Edit This link. f…
Browse files Browse the repository at this point in the history
…ixes #7503 for 2.6

git-svn-id: http://svn.automattic.com/wordpress/branches/2.6@8628 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ryan committed Aug 12, 2008
1 parent bd0d603 commit fa17bbc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions wp-admin/page.php
Expand Up @@ -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";
Expand Down

0 comments on commit fa17bbc

Please sign in to comment.