Possible fix for dragonfly login problems on Apache

This commit is contained in:
alexhudson
2007-01-26 20:43:18 +00:00
parent 6c0da6e2ab
commit cc8677fa9f
+4
View File
@@ -122,6 +122,10 @@ def AcceptCredentials(req):
if currentUser:
authCookieName = GetAuthCookieName(currentUser)
authCookie = reqCookies.get(authCookieName, None)
# different cookie libs give us different results?!
if not authCookie:
authCookie = reqCookies.get(authCookieName.lower(), None)
if not authCreds and not authCookie: