diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-10 11:18:42 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-10 11:18:42 -0400 |
commit | f6bdb42d35a22dab09cc3cf52a0621ea685630ce (patch) | |
tree | 5f8937402ae1edf8f574c37792538a75e0da8c1a | |
parent | 573de867aa97aa70c28b07a805496de23460cb39 (diff) |
don't auto-pull OpenID parameters
darcs-hash:20080710151842-84dde-ad2159088ed05830e4feba88880863c84c4728c8.gz
-rw-r--r-- | actions/finishopenidlogin.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/finishopenidlogin.php b/actions/finishopenidlogin.php index 3b3a61c10..cdebf8fc8 100644 --- a/actions/finishopenidlogin.php +++ b/actions/finishopenidlogin.php @@ -128,7 +128,9 @@ class FinishopenidloginAction extends Action { if ($user) { oid_set_last($display); - oid_update_user($user, $sreg); + # XXX: commented out at @edd's request until better + # control over how data flows from OpenID provider. + # oid_update_user($user, $sreg); common_set_user($user->nickname); common_real_login(true); $this->go_home($user->nickname); |