mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
Clean up save mssage. see #8713
git-svn-id: https://develop.svn.wordpress.org/trunk@11159 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
+8
-24
@@ -38,21 +38,14 @@ function redirect_post($post_ID = '') {
|
||||
$location = 'sidebar.php?a=c';
|
||||
elseif ( isset($_POST['publish']) )
|
||||
$location = 'sidebar.php?a=b';
|
||||
} elseif ( ( isset($_POST['save']) || isset($_POST['publish']) ) && ( empty($referredby) || $referredby == $referer || 'redo' != $referredby ) ) {
|
||||
if ( isset($_POST['_wp_original_http_referer']) && strpos( $_POST['_wp_original_http_referer'], '/wp-admin/post.php') === false && strpos( $_POST['_wp_original_http_referer'], '/wp-admin/post-new.php') === false )
|
||||
$location = add_query_arg( array(
|
||||
'_wp_original_http_referer' => urlencode( stripslashes( $_POST['_wp_original_http_referer'] ) ),
|
||||
'message' => 1
|
||||
), get_edit_post_link( $post_ID, 'url' ) );
|
||||
else {
|
||||
if ( isset( $_POST['publish'] ) ) {
|
||||
if ( 'pending' == get_post_status( $post_ID ) )
|
||||
$location = add_query_arg( 'message', 8, get_edit_post_link( $post_ID, 'url' ) );
|
||||
else
|
||||
$location = add_query_arg( 'message', 6, get_edit_post_link( $post_ID, 'url' ) );
|
||||
} else {
|
||||
$location = add_query_arg( 'message', 7, get_edit_post_link( $post_ID, 'url' ) );
|
||||
}
|
||||
} elseif ( ( isset($_POST['save']) || isset($_POST['publish']) ) ) {
|
||||
if ( isset( $_POST['publish'] ) ) {
|
||||
if ( 'pending' == get_post_status( $post_ID ) )
|
||||
$location = add_query_arg( 'message', 8, get_edit_post_link( $post_ID, 'url' ) );
|
||||
else
|
||||
$location = add_query_arg( 'message', 6, get_edit_post_link( $post_ID, 'url' ) );
|
||||
} else {
|
||||
$location = add_query_arg( 'message', 1, get_edit_post_link( $post_ID, 'url' ) );
|
||||
}
|
||||
} elseif (isset($_POST['addmeta']) && $_POST['addmeta']) {
|
||||
$location = add_query_arg( 'message', 2, wp_get_referer() );
|
||||
@@ -62,15 +55,6 @@ function redirect_post($post_ID = '') {
|
||||
$location = add_query_arg( 'message', 3, wp_get_referer() );
|
||||
$location = explode('#', $location);
|
||||
$location = $location[0] . '#postcustom';
|
||||
} elseif (!empty($referredby) && $referredby != $referer) {
|
||||
$location = $_POST['referredby'];
|
||||
$location = remove_query_arg('_wp_original_http_referer', $location);
|
||||
if ( false !== strpos($location, 'edit.php') || false !== strpos($location, 'edit-post-drafts.php') )
|
||||
$location = add_query_arg('posted', $post_ID, $location);
|
||||
elseif ( false !== strpos($location, 'wp-admin') )
|
||||
$location = "post-new.php?posted=$post_ID";
|
||||
} elseif ( isset($_POST['publish']) ) {
|
||||
$location = "post-new.php?posted=$post_ID";
|
||||
} elseif ($action == 'editattachment') {
|
||||
$location = 'attachments.php';
|
||||
} elseif ( 'post-quickpress-save-cont' == $_POST['action'] ) {
|
||||
|
||||
Reference in New Issue
Block a user