Ticket #58 (defect)
Opened 4 months ago
Last modified 2 weeks ago
get_authenticate_function needs to check for "function" key differently
Status: closed (invalid)
| Reported by: | chris@chriscurvey.com | Assigned to: | somebody |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | component1 | Version: | |
| Keywords: | Cc: | ||
on trunk, in authkit/authenticate/init at line 187:
if authenticate_conf.keys() == ['function']:
should be
if authenticate_conf.has_key('function'):
(at least I think it should)
Attachments
Change History
11/09/08 19:02:08: Modified by thejimmyg
- status changed from new to closed.
- resolution set to invalid.

No, I think it is right as it is. If you are providing an authenticate function you don't want AuthKit? to build one for you. That's what this tests. What were you trying to fix that led you to suggesting that?
Thanks,
James