]> git.mxchange.org Git - friendica.git/commitdiff
tracking another edge case
authorfriendica <info@friendica.com>
Wed, 13 Jun 2012 04:34:28 +0000 (21:34 -0700)
committerfriendica <info@friendica.com>
Wed, 13 Jun 2012 04:34:28 +0000 (21:34 -0700)
include/items.php

index f2dde23a713ba54878b39847bbd4c0aea7628ac6..5d9c36d94f1120b8befcfb71472051503b59a6d6 100755 (executable)
@@ -3393,14 +3393,16 @@ function drop_item($id,$interactive = true) {
 
 
 function first_post_date($uid,$wall = false) {
-       $r = q("select created from item 
+       $r = q("select id, created from item 
                where uid = %d and wall = %d and deleted = 0 and visible = 1 AND moderated = 0 
                order by created asc limit 1",
                intval($uid),
                intval($wall ? 1 : 0)
        );
-       if(count($r))
+       if(count($r)) {
+               logger('first_post_date: ' . $r[0]['id'] . ' ' . $r[0]['created'], LOGGER_DATA);
                return substr($r[0]['created'],0,10);
+       }
        return false;
 }