references

darcs-hash:20080618131519-84dde-a3af7c41be8d9606f39ce4be3029697f913ab053.gz
This commit is contained in:
Evan Prodromou 2008-06-18 09:15:19 -04:00
parent 65816a6e2f
commit c3adb121ec
1 changed files with 5 additions and 5 deletions

View 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);