diff options
author | tailor <cygnus@janrain.com> | 2007-01-09 21:32:04 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2007-01-09 21:32:04 +0000 |
commit | 235c1f3ab10f1ace01d64daf65fef073dad45721 (patch) | |
tree | f2f76c989b4d67ce4cf0d3c88ee6d6cc43c5f685 /examples/consumer/finish_auth.php | |
parent | f38bdd6f33ceb38ab8956e2b94ead8c9ee3734e5 (diff) | |
download | php-openid-235c1f3ab10f1ace01d64daf65fef073dad45721.zip php-openid-235c1f3ab10f1ace01d64daf65fef073dad45721.tar.gz php-openid-235c1f3ab10f1ace01d64daf65fef073dad45721.tar.bz2 |
[project @ API CHANGE: Make Auth_OpenID_extensionResponse::extensionResponse take boolean to require extension args to be signed]
Diffstat (limited to 'examples/consumer/finish_auth.php')
-rw-r--r-- | examples/consumer/finish_auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/consumer/finish_auth.php b/examples/consumer/finish_auth.php index bee5743..a75811c 100644 --- a/examples/consumer/finish_auth.php +++ b/examples/consumer/finish_auth.php @@ -23,7 +23,7 @@ if ($response->status == Auth_OpenID_CANCEL) { $success .= ' (XRI CanonicalID: '.$response->endpoint->canonicalID.') '; } - $sreg = $response->extensionResponse('sreg'); + $sreg = $response->extensionResponse('sreg', true); if (@$sreg['email']) { $success .= " You also returned '".$sreg['email']."' as your email."; |