Skip to content

Commit 441ca9f

Browse files
committed
Follow trunk before migration and don't fill the snippets on the
history page - Legacy-Id: 4320
1 parent d176d2b commit 441ca9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/idtracker/templatetags/ietf_filters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ def ad_area(user):
445445
def format_history_text(text):
446446
"""Run history text through some cleaning and add ellipsis if it's too long."""
447447
full = mark_safe(sanitize_html(keep_spacing(linebreaksbr(urlize(mark_safe(text))))))
448-
snippet = truncatewords_html(format_textarea(fill(text, 80)), 25)
448+
snippet = truncatewords_html(format_textarea(text), 25)
449449
if snippet[-3:] == "...":
450450
return mark_safe(u'<div class="snippet">%s<span class="showAll">[show all]</span></div><div style="display:none" class="full">%s</div>' % (snippet, full))
451451
return full

0 commit comments

Comments
 (0)