X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhovercard.php;h=26c60625195dbbd73fb322cf35e64b60acb4b41c;hb=d0dfcc71a82ac423db68a12fd2eaf6d13cb18e1f;hp=5c9ef61fc9ec409b0ceeb46394798d494244f47f;hpb=8f253f6c1288534c50fac34f05afb1a2c07c9335;p=friendica.git diff --git a/mod/hovercard.php b/mod/hovercard.php index 5c9ef61fc9..26c6062519 100644 --- a/mod/hovercard.php +++ b/mod/hovercard.php @@ -39,7 +39,7 @@ function hovercard_content() { // If a contact is connected the url is internally changed to "redir/CID". We need the pure url to search for // the contact. So we strip out the contact id from the internal url and look in the contact table for // the real url (nurl) - if(local_user() && strpos($profileurl, "redir/") === 0) { + if (local_user() && strpos($profileurl, "redir/") === 0) { $cid = intval(substr($profileurl, 6)); $r = dba::select('contact', array('nurl', 'self'), array('id' => $cid), array('limit' => 1)); $profileurl = ($r["nurl"] ? $r["nurl"] : ""); @@ -52,7 +52,6 @@ function hovercard_content() { // Search for contact data $contact = get_contact_details_by_url($nurl); } - if(!is_array($contact)) return;