diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php
index 0aef77d938..02d300c100 100644
--- a/src/wp-admin/includes/dashboard.php
+++ b/src/wp-admin/includes/dashboard.php
@@ -349,13 +349,13 @@ function wp_dashboard_quick_press( $error_msg = false ) {
if ( ! $drafts ) {
return;
}
-
+
echo '
';
if ( count( $drafts ) > 3 ) {
echo '
' . _x( 'View all', 'drafts' ) . "
\n";
}
echo '
' . __( 'Drafts' ) . "
\n
";
-
+
$drafts = array_slice( $drafts, 0, 3 );
foreach ( $drafts as $draft ) {
$url = get_edit_post_link( $draft->ID );
@@ -550,7 +550,7 @@ function dashboard_show_published_posts( $args ) {
dashboard_relative_date( get_the_time( 'U' ) ),
get_the_time(),
get_edit_post_link(),
- get_the_title()
+ _draft_or_post_title()
);
$i++;
}