From: jordan Date: Sat, 20 Aug 2011 10:14:57 +0000 (+0000) Subject: OSQA-747, applying patch that resolves potential problem with the OpenID Auth consume... X-Git-Tag: live~156 X-Git-Url: https://git.openstreetmap.org/osqa.git/commitdiff_plain/2a915ffb74440806f20ee45340b9b9876072401d OSQA-747, applying patch that resolves potential problem with the OpenID Auth consumer, making the AX response unsigned git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@1161 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- diff --git a/forum_modules/openidauth/consumer.py b/forum_modules/openidauth/consumer.py index 6ed5b2b..ee25f39 100644 --- a/forum_modules/openidauth/consumer.py +++ b/forum_modules/openidauth/consumer.py @@ -123,7 +123,7 @@ class OpenIdAbstractAuthConsumer(AuthenticationConsumer): ax_schema = getattr(self, 'dataype2ax_schema', False) if ax_schema: - ax = AXFetchResponse.fromSuccessResponse(openid_response) + ax = AXFetchResponse.fromSuccessResponse(openid_response, False) if ax: axargs = ax.getExtensionArgs()