diff options
author | friendica <info@friendica.com> | 2014-10-09 01:02:54 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-09 01:02:54 -0700 |
commit | fc0576acf810019a0c168bfa4dc4a2175ae0b505 (patch) | |
tree | 09a09da19a7eee4c5dc1100b89757e85d2bc8ab8 | |
parent | 9ac12d6f328c50a46f487da501ee775fdf9b58f8 (diff) | |
download | volse-hubzilla-fc0576acf810019a0c168bfa4dc4a2175ae0b505.tar.gz volse-hubzilla-fc0576acf810019a0c168bfa4dc4a2175ae0b505.tar.bz2 volse-hubzilla-fc0576acf810019a0c168bfa4dc4a2175ae0b505.zip |
try to track down intermittent wall-to-wall attribution on Diaspora exported posts
-rw-r--r-- | include/bb2diaspora.php | 4 | ||||
-rw-r--r-- | version.inc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 089838e97..65f4311a0 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -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); } diff --git a/version.inc b/version.inc index 147cef258..b6fff42c1 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-10-08.822 +2014-10-09.823 |