From 4a0b1a9ea9d288e42ac03c43ef904b0565a7087f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 18 Jun 2008 07:43:10 -0400 Subject: consolidate linking a user to an OpenID darcs-hash:20080618114310-84dde-15b224bb16d434150af457bc3b08de58e3833abd.gz --- actions/finishaddopenid.php | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) (limited to 'actions/finishaddopenid.php') diff --git a/actions/finishaddopenid.php b/actions/finishaddopenid.php index 2b34b38ea..6a7bb3d24 100644 --- a/actions/finishaddopenid.php +++ b/actions/finishaddopenid.php @@ -64,7 +64,8 @@ class FinishaddopenidAction extends Action { $this->message(_t('This OpenID is already associated with user "') . $user->nickname . _t('"')); } else { $cur = common_current_user(); - if (!$this->connect_user($cur, $display, $canonical)) { + $result = oid_link_user($cur->id, $display, $canonical); + if (!$result) { $this->message(_t('Error connecting user')); return; } @@ -136,24 +137,4 @@ class FinishaddopenidAction extends Action { return true; } - - function connect_user($user, $display, $canonical) { - - $id = $user->id; - - $oid = new User_openid(); - $oid->display = $display; - $oid->canonical = $canonical; - $oid->user_id = $id; - $oid->created = DB_DataObject_Cast::dateTime(); - - $result = $oid->insert(); - - if (!$result) { - $err = PEAR::getStaticProperty('DB_DataObject','lastError'); - common_debug('DB error ' . $err->code . ': ' . $err->message, __FILE__); - return false; - } - return true; - } } -- cgit v1.2.3-54-g00ecf