Fixes E_WARNING from foreach() because count() seem to return TRUE even when $r is no array ?!

Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2016-03-04 22:46:30 +01:00
parent 858438daec
commit b56a9bfacc
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
1 changed files with 1 additions and 0 deletions

View File

@ -1838,6 +1838,7 @@ function load_contact_links($uid) {
$r = q("SELECT `id`,`network`,`url`,`thumb`, `rel` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''",
intval($uid)
);
if(is_filled_array($r)) {
foreach($r as $rr){
$url = normalise_link($rr['url']);