diff options
author | friendica <info@friendica.com> | 2012-08-29 23:03:03 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-29 23:03:03 -0700 |
commit | f6d198ce5dcd9fe416975ff760439dfacbb83812 (patch) | |
tree | 77be24f7ab74dfcd62c2e621eb6f7568a78d8de6 /mod/network.php | |
parent | da49a27aa24b6a85b2623134884d933dc04e201b (diff) | |
download | volse-hubzilla-f6d198ce5dcd9fe416975ff760439dfacbb83812.tar.gz volse-hubzilla-f6d198ce5dcd9fe416975ff760439dfacbb83812.tar.bz2 volse-hubzilla-f6d198ce5dcd9fe416975ff760439dfacbb83812.zip |
trim a bit of fat
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/mod/network.php b/mod/network.php index a85e11f90..b37be2fa8 100644 --- a/mod/network.php +++ b/mod/network.php @@ -661,14 +661,9 @@ function network_content(&$a, $update = 0, $load = false) { // Then fetch all the children of the parents that are on this page - $parents_arr = array(); - $parents_str = ''; - if(count($r)) { - foreach($r as $rr) - if(! in_array($rr['item_id'],$parents_arr)) - $parents_arr[] = $rr['item_id']; - $parents_str = implode(', ', $parents_arr); + + $parents_str = ids_to_querystr($r,'item_id'); $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`, `contact`.`writable`, @@ -719,9 +714,8 @@ function network_content(&$a, $update = 0, $load = false) { $second = dba_timer(); - if(! $update) { + if(! $update) $o .= alt_pager($a,count($items)); - } // logger('parent dba_timer: ' . sprintf('%01.4f',$first - $start)); // logger('child dba_timer: ' . sprintf('%01.4f',$second - $first)); |