mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-19 12:58:29 +00:00
Login required should use the next parameter.
This commit is contained in:
parent
685e63e0af
commit
d0ca50d9d6
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ def login(request):
|
|||
|
||||
return render(request, 'accounts/login.html', {
|
||||
'form': form,
|
||||
'next': request.POST.get('next', "")
|
||||
'next': request.POST.get('next', "") or request.GET.get('next', "")
|
||||
})
|
||||
|
||||
@csrf_exempt
|
||||
|
|
Loading…
Add table
Reference in a new issue