From: friendica Date: Thu, 8 Mar 2012 05:12:31 +0000 (-0800) Subject: reworked fix from unary for bug #323 (due to incorrect use of array_key_exists()) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=03b5e3aa0c99ce6c290156ddccc9cba6744f245d;p=friendica.git reworked fix from unary for bug #323 (due to incorrect use of array_key_exists()) --- diff --git a/mod/network.php b/mod/network.php index 8da1561a0a..27c6e315b8 100755 --- a/mod/network.php +++ b/mod/network.php @@ -470,7 +470,7 @@ function network_content(&$a, $update = 0) { if(count($r)) { foreach($r as $rr) - if(! array_key_exists($rr['item_id'],$parents_arr)) + if(! in_array($rr['item_id'],$parents_arr)) $parents_arr[] = $rr['item_id']; $parents_str = implode(', ', $parents_arr);