]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
references
authorEvan Prodromou <evan@prodromou.name>
Wed, 18 Jun 2008 13:15:19 +0000 (09:15 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 18 Jun 2008 13:15:19 +0000 (09:15 -0400)
darcs-hash:20080618131519-84dde-a3af7c41be8d9606f39ce4be3029697f913ab053.gz

actions/finishaddopenid.php

index 6a7bb3d2484cc703dea65e4948d725ec824581e5..97afc1471692a3a5ae55c580f35b1d790cc6e1b7 100644 (file)
@@ -34,7 +34,7 @@ class FinishaddopenidAction extends Action {
 
        function try_login() {
 
-               $consumer = oid_consumer();
+               $consumer =& oid_consumer();
 
                $response = $consumer->complete(common_local_url('finishaddopenid'));
 
@@ -58,12 +58,12 @@ class FinishaddopenidAction extends Action {
                                $sreg = $sreg_resp->contents();
                        }
 
-                       $other = $this->get_user($canonical);
+                       $other =& $this->get_user($canonical);
 
                        if ($other) {
                                $this->message(_t('This OpenID is already associated with user "') . $user->nickname . _t('"'));
                        } else {
-                               $cur = common_current_user();
+                               $cur =& common_current_user();
                                $result = oid_link_user($cur->id, $display, $canonical);
                                if (!$result) {
                                        $this->message(_t('Error connecting user'));
@@ -96,9 +96,9 @@ class FinishaddopenidAction extends Action {
                return $user;
        }
 
-       function update_user($user, $sreg) {
+       function update_user(&$user, $sreg) {
 
-               $profile = $user->getProfile();
+               $profile =& $user->getProfile();
 
                $orig_profile = clone($profile);