mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Change save post redirects. see #6024
git-svn-id: https://develop.svn.wordpress.org/trunk@7084 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
91a8de6bbc
commit
f9eaadc26f
@ -101,6 +101,7 @@ case 'editpost':
|
||||
check_admin_referer('update-post_' . $post_ID);
|
||||
|
||||
$post_ID = edit_post();
|
||||
$post = get_post($post_ID);
|
||||
|
||||
if ( 'post' == $_POST['originalaction'] ) {
|
||||
if (!empty($_POST['mode'])) {
|
||||
@ -127,7 +128,11 @@ case 'editpost':
|
||||
$referredby = preg_replace('|https?://[^/]+|i', '', $_POST['referredby']);
|
||||
$referer = preg_replace('|https?://[^/]+|i', '', wp_get_referer());
|
||||
|
||||
if (isset($_POST['addmeta']) && $_POST['addmeta']) {
|
||||
if ( isset($_POST['save']) && ( 'draft' == $post->post_status || 'pending' == $post->post_status ) ) {
|
||||
$location = "post.php?action=edit&post=$post_ID";
|
||||
} elseif ( isset($_POST['save']) && (empty($referredby) || $referredby == $referer) ) {
|
||||
$location = "post.php?action=edit&post=$post_ID";
|
||||
} elseif (isset($_POST['addmeta']) && $_POST['addmeta']) {
|
||||
$location = add_query_arg( 'message', 2, wp_get_referer() );
|
||||
$location = explode('#', $location);
|
||||
$location = $location[0] . '#postcustom';
|
||||
@ -141,6 +146,8 @@ case 'editpost':
|
||||
$location = get_permalink( $post_ID );
|
||||
if (false !== strpos($location, 'edit.php') )
|
||||
$location = add_query_arg('posted', $post_ID, $location);
|
||||
} elseif ( isset($_POST['publish']) ) {
|
||||
$location = "post-new.php?posted=$post_ID";
|
||||
} elseif ($action == 'editattachment') {
|
||||
$location = 'attachments.php';
|
||||
} else {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user