forked from GNUsocial/gnu-social
Fix: Cannot remove OpenID
OpenidsettingsAction::removeOpenID() was comparing and int with a string so always displayed "That OpenID does not belong to you."
This commit is contained in:
parent
128a00c4ab
commit
99f2aba6e1
@ -287,7 +287,7 @@ class OpenidsettingsAction extends SettingsAction
|
|||||||
// TRANS: Form validation error for a non-existing OpenID.
|
// TRANS: Form validation error for a non-existing OpenID.
|
||||||
throw new ClientException(_m('No such OpenID.'));
|
throw new ClientException(_m('No such OpenID.'));
|
||||||
}
|
}
|
||||||
if ($this->scoped->getID() !== $oid->user_id) {
|
if ($this->scoped->getID() !== $oid->getID()) {
|
||||||
// TRANS: Form validation error if OpenID is connected to another user.
|
// TRANS: Form validation error if OpenID is connected to another user.
|
||||||
throw new ClientException(_m('That OpenID does not belong to you.'));
|
throw new ClientException(_m('That OpenID does not belong to you.'));
|
||||||
}
|
}
|
||||||
|
@ -45,6 +45,16 @@ class User_openid extends Managed_DataObject
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getID()
|
||||||
|
{
|
||||||
|
if (!isset($this->user_id)) {
|
||||||
|
throw new Exception('No ID set.');
|
||||||
|
} elseif (empty($this->user_id)) {
|
||||||
|
throw new Exception('Empty ID for object! (not inserted yet?).');
|
||||||
|
}
|
||||||
|
return intval($this->user_id);
|
||||||
|
}
|
||||||
|
|
||||||
static function hasOpenID($user_id)
|
static function hasOpenID($user_id)
|
||||||
{
|
{
|
||||||
$oid = new User_openid();
|
$oid = new User_openid();
|
||||||
|
Loading…
Reference in New Issue
Block a user