From 8aaa48e041f09a4d0f4db0092ca1a71d8002e0d7 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 27 Apr 2007 04:34:44 +0000 Subject: [PATCH] Use the right field name ya idjit. git-svn-id: http://svn.automattic.com/wordpress/trunk@5329 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/comment.php b/wp-includes/comment.php index f71c2c975..c5ef46632 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -84,7 +84,7 @@ function &get_comment(&$comment, $output = OBJECT) { $_comment = & $comment_cache[$comment->comment_ID]; } else { $comment = (int) $comment; - if ( isset($GLOBALS['comment']) && ($GLOBALS['comment']->id == $comment) ) { + if ( isset($GLOBALS['comment']) && ($GLOBALS['comment']->comment_ID == $comment) ) { $_comment = & $GLOBALS['comment']; } elseif ( !isset($comment_cache[$comment]) ) { $_comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment' LIMIT 1");