]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/views/readers.py
Small tweaks.
[osqa.git] / forum / views / readers.py
index b61e3e9cf6f9303abe5ac80404c3b0a9f67a817b..38c3c9fdc82bebc957f71daf756f1a3ca08b58a4 100644 (file)
@@ -243,7 +243,7 @@ def update_question_view_times(request, question):
 
     request.session['last_seen_in_question'][question.id] = datetime.datetime.now()
 
-def match_question_slug(slug):
+def match_question_slug(id, slug):
     slug_words = slug.split('-')
     qs = Question.objects.filter(title__istartswith=slug_words[0])
 
@@ -287,7 +287,7 @@ def question(request, id, slug='', answer=None):
         question = Question.objects.get(id=id)
     except:
         if slug:
-            question = match_question_slug(slug)
+            question = match_question_slug(id, slug)
             if question is not None:
                 return HttpResponseRedirect(question.get_absolute_url())