diff options
-rw-r--r-- | actions/finishimmediate.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/finishimmediate.php b/actions/finishimmediate.php index af55f166e..8831536a1 100644 --- a/actions/finishimmediate.php +++ b/actions/finishimmediate.php @@ -35,10 +35,10 @@ class FinishimmediateAction extends Action { $canonical = ($response->endpoint->canonicalID) ? $response->endpoint->canonicalID : $response->getDisplayIdentifier(); - $user = $this->get_user($canonical); + $user = oid_get_user($canonical); if ($user) { - $this->update_user($user, $sreg); + oid_update_user($user, $sreg); common_set_user($user->nickname); $this->go_backto(); return; |