From cf9f85dc8121a359d550ffa3b735fb48859eee88 Mon Sep 17 00:00:00 2001 From: donncha Date: Thu, 24 Apr 2008 11:45:39 +0000 Subject: Merged with WP 2.5, revision 7806 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1260 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/comment.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'wp-includes/comment.php') diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 94479fb..63e6b1b 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -451,6 +451,11 @@ function wp_blacklist_check($author, $email, $url, $comment, $user_ip, $user_age function wp_count_comments() { global $wpdb; + $count = wp_cache_get('comments', 'counts'); + + if ( false !== $count ) + return $count; + $count = $wpdb->get_results( "SELECT comment_approved, COUNT( * ) AS num_comments FROM {$wpdb->comments} GROUP BY comment_approved", ARRAY_A ); $stats = array( ); @@ -464,7 +469,10 @@ function wp_count_comments() { $stats[$key] = 0; } - return (object) $stats; + $stats = (object) $stats; + wp_cache_set('comments', $stats, 'counts'); + + return $stats; } /** -- cgit