From 050214d9402a7538ea44b4c347696d7d494f57c9 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sat, 15 Nov 2008 07:27:48 +0000 Subject: [PATCH] Fix position of the confirmation message in QuickPress, fixes #8218 git-svn-id: https://develop.svn.wordpress.org/trunk@9709 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/dashboard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 51ddbbf0d2..c8f9028636 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -289,9 +289,9 @@ function wp_dashboard_quick_press() { $view = get_permalink( $_POST['post_ID'] ); $edit = clean_url( get_edit_post_link( $_POST['post_ID'] ) ); if ( 'post-quickpress-publish' == $_POST['action'] ) { - printf( __( 'Post Published. View post | Edit post' ), clean_url( $view ), $edit ); + printf( '

' . __( 'Post Published. View post | Edit post' ) . '

', clean_url( $view ), $edit ); } else { - printf( __( 'Draft Saved. Preview post | Edit post' ), clean_url( add_query_arg( 'preview', 1, $view ) ), $edit ); + printf( '

' . __( 'Draft Saved. Preview post | Edit post' ) . '

', clean_url( add_query_arg( 'preview', 1, $view ) ), $edit ); $drafts_query = new WP_Query( array( 'post_type' => 'post', 'what_to_show' => 'posts',