1
0
Fork 0

fix hovercard for not logged in users

This commit is contained in:
rabuzarus 2018-06-21 22:46:10 +02:00
commit 92a84275d4
2 changed files with 2 additions and 1 deletions

View file

@ -44,7 +44,7 @@ function hovercard_content()
// the contact. So we strip out the contact id from the internal url and look in the contact table for
// the real url (nurl)
$cid = 0;
if (local_user() && strpos($profileurl, 'redir/') === 0) {
if (strpos($profileurl, 'redir/') === 0) {
$cid = intval(substr($profileurl, 6));
$remote_contact = dba::selectFirst('contact', ['nurl'], ['id' => $cid]);
$profileurl = defaults($remote_contact, 'nurl', '');