From ae5cd53e1ed6ad9a222acaf26593d42bc8204413 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 1 Aug 2013 21:24:55 -0700 Subject: potentially fixes the "federation" bug w/r/t/ tagged forums --- include/items.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/items.php') diff --git a/include/items.php b/include/items.php index 4409ed400..bacb68909 100755 --- a/include/items.php +++ b/include/items.php @@ -2103,9 +2103,9 @@ function tgroup_check($uid,$item) { // check that the message originated elsewhere and is a top-level post // or is a followup and we have already accepted the top level post - if($arr['mid'] != $arr['parent_mid']) { + if($item['mid'] != $item['parent_mid']) { $r = q("select id from item where mid = '%s' and uid = %d limit 1", - dbesc($arr['parent_mid']), + dbesc($item['parent_mid']), intval($uid) ); if($r) -- cgit v1.2.3