Merge pull request #4823 from rabuzarus/20180412_-_enable_remote_user_if_local_user

local_user() could also be a remote_user()
This commit is contained in:
Michael Vogel 2018-04-12 23:43:43 +02:00 committed by GitHub
commit c882dc8baf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -953,10 +953,12 @@ function public_contact()
*/
function remote_user()
{
// You cannot be both local and remote
if (local_user()) {
return false;
}
// You cannot be both local and remote.
// Unncommented by rabuzarus because remote authentication to local
// profiles wasn't possible anymore (2018-04-12).
// if (local_user()) {
// return false;
// }
if (x($_SESSION, 'authenticated') && x($_SESSION, 'visitor_id')) {
return intval($_SESSION['visitor_id']);
}