summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2007-04-06 17:55:30 +0000
committertailor <cygnus@janrain.com>2007-04-06 17:55:30 +0000
commit5a80365b2b643c1cfc866ea0a5ae2e25af0bf7b0 (patch)
tree1d3a2e2e043232d3d811c3802f87d5169582c649
parentabccf2d93c2f1e25518bedd068b7759a03038b6c (diff)
downloadphp-openid-5a80365b2b643c1cfc866ea0a5ae2e25af0bf7b0.zip
php-openid-5a80365b2b643c1cfc866ea0a5ae2e25af0bf7b0.tar.gz
php-openid-5a80365b2b643c1cfc866ea0a5ae2e25af0bf7b0.tar.bz2
[project @ Fix idpage generation]
-rw-r--r--examples/server/lib/actions.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/server/lib/actions.php b/examples/server/lib/actions.php
index 05c0528..7e11cfa 100644
--- a/examples/server/lib/actions.php
+++ b/examples/server/lib/actions.php
@@ -141,7 +141,8 @@ function action_trust()
function action_idpage()
{
- return idpage_render(getLoggedInUser());
+ $identity = $_GET['user'];
+ return idpage_render($identity);
}
function action_idpXrds()