Fix OpenID URI removal

See #252
This commit is contained in:
Sandro Santilli 2017-03-18 13:33:07 +01:00
parent 7d67eefdf5
commit 1ef206467f
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ class OpenidsettingsAction extends SettingsAction
// TRANS: Form validation error for a non-existing OpenID.
throw new ClientException(_m('No such OpenID.'));
}
if ($this->scoped->getID() !== $oid->user_id) {
if ($this->scoped->getID() != $oid->user_id) {
// TRANS: Form validation error if OpenID is connected to another user.
throw new ClientException(_m('That OpenID does not belong to you.'));
}