diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php
index 2c51601d4a..0ab6890648 100644
--- a/wp-admin/includes/class-wp-posts-list-table.php
+++ b/wp-admin/includes/class-wp-posts-list-table.php
@@ -831,6 +831,18 @@ class WP_Posts_List_Table extends WP_List_Table {
}
}
+ if ( 'publish' == $post->post_status ) {
+ _e( 'Published' );
+ } elseif ( 'future' == $post->post_status ) {
+ if ( $time_diff > 0 ) {
+ echo '' . __( 'Missed schedule' ) . '';
+ } else {
+ _e( 'Scheduled' );
+ }
+ } else {
+ _e( 'Last Modified' );
+ }
+ echo '
';
if ( 'excerpt' == $mode ) {
/**
* Filter the published time of the post.
@@ -852,18 +864,6 @@ class WP_Posts_List_Table extends WP_List_Table {
/** This filter is documented in wp-admin/includes/class-wp-posts-list-table.php */
echo '' . apply_filters( 'post_date_column_time', $h_time, $post, 'date', $mode ) . '';
}
- echo '
';
- if ( 'publish' == $post->post_status ) {
- _e( 'Published' );
- } elseif ( 'future' == $post->post_status ) {
- if ( $time_diff > 0 ) {
- echo '' . __( 'Missed schedule' ) . '';
- } else {
- _e( 'Scheduled' );
- }
- } else {
- _e( 'Last Modified' );
- }
}
/**
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 14f75915fc..896a180700 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.4-alpha-34004';
+$wp_version = '4.4-alpha-34005';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.