fixed issue 1208 (auth on GAE) by disabling virtual fields in auth.user on GAE
This commit is contained in:
@@ -1 +1 @@
|
||||
Version 2.3.0 (2012-12-08 18:24:15) rc1
|
||||
Version 2.3.0 (2012-12-08 18:30:53) rc1
|
||||
|
||||
@@ -1766,6 +1766,7 @@ class Auth(object):
|
||||
from gluon.settings import global_settings
|
||||
if global_settings.web2py_runtime_gae:
|
||||
user = Row(self.db.auth_user._filter_fields(user, id=True))
|
||||
delattr(user,'password')
|
||||
else:
|
||||
user = Row(user)
|
||||
for key,value in user.items():
|
||||
|
||||
Reference in New Issue
Block a user