summaryrefslogtreecommitdiffstats
path: root/hyperkitty/views/thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/views/thread.py')
-rw-r--r--hyperkitty/views/thread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/views/thread.py b/hyperkitty/views/thread.py
index fc78cbe..397e45d 100644
--- a/hyperkitty/views/thread.py
+++ b/hyperkitty/views/thread.py
@@ -40,7 +40,7 @@ from forms import *
from hyperkitty.lib import get_months, get_store, stripped_subject
-def thread_index(request, mlist_fqdn, threadid):
+def thread_index(request, mlist_fqdn, threadid, month=None, year=None):
''' Displays all the email for a given thread identifier '''
search_form = SearchForm(auto_id=False)
t = loader.get_template('thread.html')
@@ -122,7 +122,7 @@ def thread_index(request, mlist_fqdn, threadid):
'list_address': mlist_fqdn,
'search_form': search_form,
'addtag_form': tag_form,
- 'month': 'Thread',
+ 'month': thread.date_active,
'participants': participants,
'first_mail': thread.starting_email,
'replies': list(emails)[1:],