Show "Post submitted" message when contributors submit a post for review, props mdawaffe, fixes #8519

git-svn-id: http://svn.automattic.com/wordpress/trunk@10094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2008-12-07 03:39:00 +00:00
parent 696e009118
commit 5fec33de25
4 changed files with 16 additions and 6 deletions

View File

@ -25,6 +25,7 @@ $messages[3] = __('Custom field deleted.');
$messages[4] = __('Post updated.');
$messages[6] = sprintf(__('Post published. <a href="%s">View post</a>'), get_permalink($post_ID));
$messages[7] = __('Post saved.');
$messages[8] = sprintf(__('Post submitted. <a href="%s">Preview post</a>'), add_query_arg( 'preview', 'true', get_permalink($post_ID) ) );
if ( isset($_GET['revision']) )
$messages[5] = sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) );

View File

@ -23,6 +23,7 @@ $messages[2] = __('Custom field updated.');
$messages[3] = __('Custom field deleted.');
$messages[4] = __('Page updated.');
$messages[5] = sprintf(__('Page published. <a href="%s">View page</a>'), get_permalink($post_ID));
$messages[6] = sprintf(__('Page submitted. <a href="%s">Preview page</a>'), add_query_arg( 'preview', 'true', get_permalink($post_ID) ) );
if ( isset($_GET['revision']) )
$messages[5] = sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) );

View File

@ -42,10 +42,14 @@ function redirect_page($page_ID) {
'message' => 1
), get_edit_post_link( $page_ID, 'url' ) );
else {
if ( isset( $_POST['publish'] ) )
$location = add_query_arg( 'message', 5, get_edit_post_link( $page_ID, 'url' ) );
else
if ( isset( $_POST['publish'] ) ) {
if ( 'pending' == get_post_status( $page_ID ) )
$location = add_query_arg( 'message', 6, get_edit_post_link( $page_ID, 'url' ) );
else
$location = add_query_arg( 'message', 5, get_edit_post_link( $page_ID, 'url' ) );
} else {
$location = add_query_arg( 'message', 4, get_edit_post_link( $page_ID, 'url' ) );
}
}
} elseif ( isset($_POST['addmeta']) ) {
$location = add_query_arg( 'message', 2, wp_get_referer() );

View File

@ -45,10 +45,14 @@ function redirect_post($post_ID = '') {
'message' => 1
), get_edit_post_link( $post_ID, 'url' ) );
else {
if ( isset( $_POST['publish'] ) )
$location = add_query_arg( 'message', 6, 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['addmeta']) && $_POST['addmeta']) {
$location = add_query_arg( 'message', 2, wp_get_referer() );