diff options
author | friendica <info@friendica.com> | 2013-08-05 20:20:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-05 20:20:34 -0700 |
commit | 18f8fcf9e72660f25c5761b56b8cc14b89c5ded4 (patch) | |
tree | eec29e3869d0b158caadb6ee13d664eec8fe8054 /include/socgraph.php | |
parent | 9cb10b8a94cb1a919f07d83ffbb67275276ffd77 (diff) | |
download | volse-hubzilla-18f8fcf9e72660f25c5761b56b8cc14b89c5ded4.tar.gz volse-hubzilla-18f8fcf9e72660f25c5761b56b8cc14b89c5ded4.tar.bz2 volse-hubzilla-18f8fcf9e72660f25c5761b56b8cc14b89c5ded4.zip |
use url part of array
Diffstat (limited to 'include/socgraph.php')
-rw-r--r-- | include/socgraph.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/socgraph.php b/include/socgraph.php index bf23a90df..bd952ef9b 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -342,7 +342,7 @@ function update_suggestions() { $j = json_decode($ret['body'],true); if($j && $j['success']) { foreach($j['entries'] as $host) { - poco_load('',$host . '/poco'); + poco_load('',$host['url'] . '/poco'); } } } |