fixed security issue with redirect after expired login, thanks André Kablu

This commit is contained in:
Massimo
2014-01-24 16:22:42 -06:00
parent 13cc8df4be
commit 060eddf812
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.8.2-stable+timestamp.2014.01.14.22.16.35
Version 2.8.2-stable+timestamp.2014.01.24.16.21.05
+1 -1
View File
@@ -3,7 +3,7 @@ import os, sys
from test_http import *
from test_cache import *
if "google" in os.getenv("DB"):
if "google" in (os.getenv("DB") or []):
from test_dal_nosql import *
else:
from test_dal import *
+1 -1
View File
@@ -1125,7 +1125,7 @@ class Auth(object):
f=f, args=args, vars=vars, scheme=scheme)
def here(self):
return URL(args=current.request.args,vars=current.request.vars)
return URL(args=current.request.args,vars=current.request.get_vars)
def __init__(self, environment=None, db=None, mailer=True,
hmac_key=None, controller='default', function='user',