From 82ad881c853a96b540ca8eebc16b68661a2bbdef Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 12 Jun 2012 21:38:10 -0700 Subject: [PATCH] think this will fix it --- include/items.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/items.php b/include/items.php index 5d9c36d94f..6f2e19f6a7 100755 --- a/include/items.php +++ b/include/items.php @@ -3395,6 +3395,7 @@ function drop_item($id,$interactive = true) { function first_post_date($uid,$wall = false) { $r = q("select id, created from item where uid = %d and wall = %d and deleted = 0 and visible = 1 AND moderated = 0 + and id = parent order by created asc limit 1", intval($uid), intval($wall ? 1 : 0)