put back the the naming of the variables in the calls to question_list in the index function.
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@433
0cfe37f9-358a-4d5e-be75-
b63607b5c754
def index(request):
return question_list(request,
Question.objects.all(),
def index(request):
return question_list(request,
Question.objects.all(),
- request.utils.set_sort_method('active'),
- reverse('questions'))
+ sort=request.utils.set_sort_method('active'),
+ base_path=reverse('questions'))
@decorators.render('questions.html', 'unanswered')
def unanswered(request):
@decorators.render('questions.html', 'unanswered')
def unanswered(request):