diff options
author | Michael Vogel <icarus@dabo.de> | 2012-05-25 16:19:10 +0200 |
---|---|---|
committer | Michael Vogel <icarus@dabo.de> | 2012-05-25 16:19:10 +0200 |
commit | a71e3134bf7250b60cafd1e51098eea70c3459de (patch) | |
tree | 456f59d30e5f4b8d22f4bfdac0c55e7323cd0427 /include/socgraph.php | |
parent | 8c80fe0bf51fa472ddf9bf225490e47ea1bf4a7f (diff) | |
parent | d1345e505406b1a1cdc3fc26a1734916c8abc89d (diff) | |
download | volse-hubzilla-a71e3134bf7250b60cafd1e51098eea70c3459de.tar.gz volse-hubzilla-a71e3134bf7250b60cafd1e51098eea70c3459de.tar.bz2 volse-hubzilla-a71e3134bf7250b60cafd1e51098eea70c3459de.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'include/socgraph.php')
-rw-r--r-- | include/socgraph.php | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/include/socgraph.php b/include/socgraph.php index 592779089..eccb133cc 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -71,20 +71,24 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) { $name = $entry->displayName; - foreach($entry->urls as $url) { - if($url->type == 'profile') { - $profile_url = $url->value; - continue; - } - if($url->type == 'webfinger') { - $connect_url = str_replace('acct:' , '', $url->value); - continue; + if(isset($entry->urls)) { + foreach($entry->urls as $url) { + if($url->type == 'profile') { + $profile_url = $url->value; + continue; + } + if($url->type == 'webfinger') { + $connect_url = str_replace('acct:' , '', $url->value); + continue; + } } - } - foreach($entry->photos as $photo) { - if($photo->type == 'profile') { - $profile_photo = $photo->value; - continue; + } + if(isset($entry->photos)) { + foreach($entry->photos as $photo) { + if($photo->type == 'profile') { + $profile_photo = $photo->value; + continue; + } } } |