alfonsodg / demo-web2py

Apache License 2.0
0 stars 0 forks source link

self.settings.login_next should be more important #33

Closed alfonsodg closed 10 years ago

alfonsodg commented 10 years ago

From pageno...@gmail.com on February 11, 2009 15:32:33

I think self.settings.login_next should be more important than request.vars._next.

Line 533: next = self.settings.login_next or request.vars._next not next = request.vars._next or self.settings.login_next

Original issue: http://code.google.com/p/web2py/issues/detail?id=34

alfonsodg commented 10 years ago

From francisb...@gmail.com on February 11, 2009 12:51:57

I disagree. self.settings is the default. request.vars provides a context-specific override...

alfonsodg commented 10 years ago

From massimod...@gmail.com on February 11, 2009 17:36:51

Agree with Fran on this one, unless we misunderstood the issue.

Status: Invalid