Skip to content

Commit

Permalink
Problem with case insensitive tag search.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@614 0cfe37f9-358a-4d5e-be75-b63607b5c754
  • Loading branch information
hernani committed Nov 10, 2010
1 parent 3c31ffa commit 3a404d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forum/views/readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def tags(request):
if request.method == "GET":
stag = request.GET.get("q", "").strip()
if stag:
tags = tags.filter(name__contains=stag)
tags = tags.filter(name__icontains=stag)

return pagination.paginated(request, ('tags', TagPaginatorContext()), {
"tags" : tags,
Expand Down

0 comments on commit 3a404d9

Please sign in to comment.