try to track down intermittent wall-to-wall attribution on Diaspora exported posts

This commit is contained in:
friendica 2014-10-09 01:02:54 -07:00
parent 9ac12d6f32
commit fc0576acf8
2 changed files with 5 additions and 1 deletions

View file

@ -263,6 +263,10 @@ function bb2dmention_callback($match) {
function bb2diaspora_itemwallwall(&$item) {
if(! array_key_exists('author',$item)) {
logger('bb2diaspora_itemwallwall: no author');
}
if(($item['mid'] == $item['parent_mid']) && ($item['author_xchan'] != $item['owner_xchan']) && (is_array($item['author']))) {
logger('bb2diaspora_itemwallwall: author: ' . print_r($item['author'],true), LOGGER_DEBUG);
}

View file

@ -1 +1 @@
2014-10-08.822
2014-10-09.823