summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templatetags
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-12-19 14:18:39 +0100
committerAurélien Bompard <aurelien@bompard.org>2012-12-19 14:18:39 +0100
commit6c6e9f989faf9591cc6103910dbfe875836b5da0 (patch)
tree177f418617d647cb329d967b70b94cb034274ff9 /hyperkitty/templatetags
parent94b5e3462e52d32f28d20a0132460d3c2f4fd259 (diff)
downloadhyperkitty-6c6e9f989faf9591cc6103910dbfe875836b5da0.tar.gz
hyperkitty-6c6e9f989faf9591cc6103910dbfe875836b5da0.tar.xz
hyperkitty-6c6e9f989faf9591cc6103910dbfe875836b5da0.zip
Improve how the quote link looks
Diffstat (limited to 'hyperkitty/templatetags')
-rw-r--r--hyperkitty/templatetags/hk_generic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hyperkitty/templatetags/hk_generic.py b/hyperkitty/templatetags/hk_generic.py
index 390c51c..f605df3 100644
--- a/hyperkitty/templatetags/hk_generic.py
+++ b/hyperkitty/templatetags/hk_generic.py
@@ -141,7 +141,7 @@ def viewer_date(email):
SNIPPED_RE = re.compile("^(\s*&gt;).*$", re.M)
@register.filter(needs_autoescape=True)
-def snip_quoted(content, quotemsg="[...]", autoescape=None):
+def snip_quoted(content, quotemsg="...", autoescape=None):
"""Snip quoted text in messages"""
if autoescape:
content = conditional_escape(content)