Don't show posts from the future

git-svn-id: https://develop.svn.wordpress.org/trunk@2255 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-02-11 01:27:10 +00:00
parent aaa22b2e54
commit a29e5dbc3c
1 changed files with 2 additions and 2 deletions

View File

@ -355,11 +355,11 @@ function next_post($format='%', $next='next post: ', $title='yes', $in_same_cat=
}
}
$now = current_time('mysql');
$now = current_time('mysql', 1);
$limitnext--;
$nextpost = @$wpdb->get_row("SELECT ID,post_title FROM $wpdb->posts WHERE post_date > '$current_post_date' AND post_date < '$now' AND post_status = 'publish' $sqlcat $sql_exclude_cats AND ID != $post->ID ORDER BY post_date ASC LIMIT $limitnext,1");
$nextpost = @$wpdb->get_row("SELECT ID,post_title FROM $wpdb->posts WHERE post_date > '$current_post_date' AND post_date_gmt < '$now' AND post_status = 'publish' $sqlcat $sql_exclude_cats AND ID != $post->ID ORDER BY post_date ASC LIMIT $limitnext,1");
if ($nextpost) {
$string = '<a href="'.get_permalink($nextpost->ID).'">'.$next;
if ($title=='yes') {