corrected middleware to allow proper redirects
authordurandn
Wed, 17 Feb 2016 16:14:04 +0100
changeset 4 8bc8b208441d
parent 3 3f52a017e6f5
child 5 4407b131a70e
corrected middleware to allow proper redirects
server/src/metaeducation/middleware.py
--- a/server/src/metaeducation/middleware.py	Wed Feb 17 11:25:20 2016 +0100
+++ b/server/src/metaeducation/middleware.py	Wed Feb 17 16:14:04 2016 +0100
@@ -18,6 +18,5 @@
                 if request.GET.get("context", ""):
                     context = request.GET["context"]
                     response = redirect(settings.LOGIN_URL)
-                    response["LOCATION"] += "?"+urlencode({"context": context})
-                    print(response["LOCATION"])
+                    response["LOCATION"] += "?"+urlencode({"context": context, "next": "/"+path})
                     return response