Fixed #1185 -- Fixed Python 2.4 bug in Django authentication mod_python handler. Thanks, Brian Ray
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1853 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
491a152c11
commit
0c548516bc
1
AUTHORS
1
AUTHORS
|
@ -81,6 +81,7 @@ answer newbie questions, and generally made Django that much better:
|
|||
phaedo <http://phaedo.cx/>
|
||||
Luke Plant <http://lukeplant.me.uk/>
|
||||
plisk
|
||||
Brian Ray <http://brianray.chipy.org/>
|
||||
Oliver Rutherfurd <http://rutherfurd.net/>
|
||||
David Schein
|
||||
sopel
|
||||
|
|
|
@ -13,7 +13,7 @@ def authenhandler(req, **kwargs):
|
|||
from django.models.auth import users
|
||||
|
||||
# check for PythonOptions
|
||||
_str_to_bool = lambda s: s.lower() in '1', 'true', 'on', 'yes'
|
||||
_str_to_bool = lambda s: s.lower() in ('1', 'true', 'on', 'yes')
|
||||
|
||||
options = req.get_options()
|
||||
permission_name = options.get('DjangoPermissionName', None)
|
||||
|
|
Loading…
Reference in New Issue