From e3fc8cf7821ef97a8c5d8c5dce0919106a86a305 Mon Sep 17 00:00:00 2001 From: Shish Date: Wed, 3 Feb 2010 15:22:54 +0000 Subject: [PATCH] reset anon IDs on the comment/list too --- ext/comment/theme.php | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/comment/theme.php b/ext/comment/theme.php index 325569e3..4e920cf2 100644 --- a/ext/comment/theme.php +++ b/ext/comment/theme.php @@ -49,6 +49,7 @@ class CommentListTheme extends Themelet { $comment_html .= "

showing $comment_limit of $comment_count comments

"; $comments = array_slice($comments, -$comment_limit); } + $this->anon_id = 1; foreach($comments as $comment) { $comment_html .= $this->comment_to_html($comment); }