Merge branch 'master' of git.gnu.io:gnu/gnu-social

This commit is contained in:
Mikael Nordfeldth 2017-04-16 11:04:17 +02:00
commit 57f78dc61c
2 changed files with 2 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.'));
}

View File

@ -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.'));
}