mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 02:41:27 +01:00
Include only approved comments when determining page of comment. Props GregMulhauser. fixes #8973 for 2.7
git-svn-id: http://svn.automattic.com/wordpress/branches/2.7@10450 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
73d12e0ea0
commit
6816c5011d
@ -592,7 +592,7 @@ function get_page_of_comment( $comment_ID, $args = array() ) {
|
||||
$comtypewhere = ( 'all' != $args['type'] && isset($allowedtypes[$args['type']]) ) ? " AND comment_type = '" . $allowedtypes[$args['type']] . "'" : '';
|
||||
|
||||
// Count comments older than this one
|
||||
$oldercoms = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_parent = 0 AND comment_date_gmt < '%s'" . $comtypewhere, $comment->comment_post_ID, $comment->comment_date_gmt ) );
|
||||
$oldercoms = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_parent = 0 AND comment_approved = '1' AND comment_date_gmt < '%s'" . $comtypewhere, $comment->comment_post_ID, $comment->comment_date_gmt ) );
|
||||
|
||||
// No older comments? Then it's page #1.
|
||||
if ( 0 == $oldercoms )
|
||||
|
Loading…
Reference in New Issue
Block a user