diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-18 09:16:36 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-18 09:16:36 -0400 |
commit | 1a112c11b7a3fe1782b6d73881481dd4d4d32a88 (patch) | |
tree | 229023c4d9c6b5d29566c523ebeb0a20eadd0532 /actions | |
parent | c3adb121ecbd59bdb0a2cb272805f35cd3bc9082 (diff) |
change variable name error
darcs-hash:20080618131636-84dde-ef33dcb94c630fdd8831d904caadb9e669ce6cb3.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/finishaddopenid.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/finishaddopenid.php b/actions/finishaddopenid.php index 97afc1471..07d174a5c 100644 --- a/actions/finishaddopenid.php +++ b/actions/finishaddopenid.php @@ -61,7 +61,7 @@ class FinishaddopenidAction extends Action { $other =& $this->get_user($canonical); if ($other) { - $this->message(_t('This OpenID is already associated with user "') . $user->nickname . _t('"')); + $this->message(_t('This OpenID is already associated with user "') . $other->nickname . _t('"')); } else { $cur =& common_current_user(); $result = oid_link_user($cur->id, $display, $canonical); |