From d412d6024571d2f1c5a880325508776e6aefadc7 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 12 May 2006 03:21:09 +0000 Subject: [PATCH] Fix Scheduled Entries list. #2715 git-svn-id: https://develop.svn.wordpress.org/trunk@3773 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/index.php b/wp-admin/index.php index 5616fbd0c8..2775ec15d4 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -79,7 +79,7 @@ foreach ($recentposts as $post) { get_results("SELECT ID, post_title, post_date_gmt FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' AND post_date_gmt > '$today' ORDER BY post_date ASC") ) : +if ( $scheduled = $wpdb->get_results("SELECT ID, post_title, post_date_gmt FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'future' ORDER BY post_date ASC") ) : ?>