summaryrefslogtreecommitdiff
path: root/modules/comment/comment.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-07-29 08:18:20 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-07-29 08:18:20 +0000
commitaa2de74fa261e4b3d290cedca100eb3330f17fff (patch)
treef9e6311a267b35f55e5c1d4fc87fd5f83b0d08eb /modules/comment/comment.module
parent452f236fcc9f27d03324aa46fc2d2b5b5a056aa3 (diff)
downloadbrdo-aa2de74fa261e4b3d290cedca100eb3330f17fff.tar.gz
brdo-aa2de74fa261e4b3d290cedca100eb3330f17fff.tar.bz2
- #27624, #27614, #27627: dead code
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r--modules/comment/comment.module1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 504680fb4..fa3a98443 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -1676,7 +1676,6 @@ function _comment_update_node_statistics($nid) {
// comments exist
if ($count > 0) {
- $node = node_load($nid);
$last_reply = db_fetch_object(db_query_range('SELECT cid, name, timestamp, uid FROM {comments} WHERE nid = %d AND status = %d ORDER BY cid DESC', $nid, COMMENT_PUBLISHED, 0, 1));
db_query("UPDATE {node_comment_statistics} SET comment_count = %d, last_comment_timestamp = %d, last_comment_name = '%s', last_comment_uid = %d WHERE nid = %d", $count, $last_reply->timestamp, $last_reply->uid ? NULL : $last_reply->name, $last_reply->uid, $nid);
}