forked from GNUsocial/gnu-social
Merge branch 'master' of git.gnu.io:gnu/gnu-social
This commit is contained in:
commit
57f78dc61c
@ -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.'));
|
||||
}
|
||||
|
@ -131,6 +131,7 @@ function oid_check_immediate($openid_url, $backto=null)
|
||||
|
||||
function oid_authenticate($openid_url, $returnto, $immediate=false)
|
||||
{
|
||||
$openid_url = Auth_OpenID::normalizeUrl($openid_url);
|
||||
if (!common_valid_http_url($openid_url)) {
|
||||
throw new ClientException(_m('No valid URL provided for OpenID.'));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user