diff options
Diffstat (limited to 'views/xrds')
-rw-r--r-- | views/xrds/openid_server/service.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/views/xrds/openid_server/service.php b/views/xrds/openid_server/service.php index 7daafbbed..269df5c2e 100644 --- a/views/xrds/openid_server/service.php +++ b/views/xrds/openid_server/service.php @@ -1,9 +1,15 @@ <?php /* - XRD info to identify do eaut email to profile mapping. + XRD info to identify do eaut email to profile mapping + and identify openid 2.0 server. */ ?> <Service priority="0"> <Type>http://specs.eaut.org/1.0/template</Type> <URI><?php echo $vars['url']; ?>profile/%7Busername%7D</URI> </Service> + <Service priority="10"> + <Type>http://specs.openid.net/auth/2.0/server</Type> + <URI><?php echo $vars['url']; ?>mod/openid_server/server.php</URI> + </Service> + |