Modify ↓
Opened 15 years ago
Closed 15 years ago
#6307 closed defect (fixed)
Missing email obfuscation of replies to topic
Reported by: | osimons | Owned by: | Radek Bartoň |
---|---|---|---|
Priority: | normal | Component: | DiscussionPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
When listing a topic and its replies, the author is only obfuscated for the original post - author is not obfuscated on any replies.
This patch fixes it:
-
tracdiscussion/templates/discussion-macros.html
221 221 222 222 <div class="footer"> 223 223 <div class="author"> 224 ${ is_message_edit and discussion.author or message.author}224 ${format_author(is_message_edit and discussion.author or message.author)} 225 225 </div> 226 226 <div class="time"> 227 227 ${is_message_edit and format_datetime(discussion.time) or format_datetime(message.time)} (${is_message_edit and pretty_timedelta(discussion.time) or pretty_timedelta(message.time)} ago)
Attachments (0)
Note: See
TracTickets for help on using
tickets.
Added to changeset r7899.