From 92a40de2fefa6c0fc72945ae957bb5d248b97c4e Mon Sep 17 00:00:00 2001 From: Aamir Khan Date: Fri, 10 Aug 2012 07:50:55 +0530 Subject: Add Tag : display all messages with particular tag --- hyperkitty/views/list.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hyperkitty/views/list.py') diff --git a/hyperkitty/views/list.py b/hyperkitty/views/list.py index 33ea992..b68d220 100644 --- a/hyperkitty/views/list.py +++ b/hyperkitty/views/list.py @@ -293,9 +293,9 @@ def search_tag(request, mlist_fqdn, tag=None, page=1): threads = [] for thread in thread_ids: - threads = STORE.get_thread(list_name, thread.threadid) - threads = threads[0:1] - + threads_tmp = STORE.get_thread(list_name, thread.threadid) + threads.append(threads_tmp[0]) + return _search_results_page(request, mlist_fqdn, threads, 'Tag search', page, limit=50) -- cgit