diff options
author | friendica <info@friendica.com> | 2012-01-22 15:25:29 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-22 15:25:29 -0800 |
commit | 11aa83742e7926c97b6e1528209a011390fa3115 (patch) | |
tree | 5b4670c68cc85e5cd89156e167e48fb1ae2cb911 /include/diaspora.php | |
parent | cf7e56aacb3fb0df60de7f9a67f987145721d46b (diff) | |
download | volse-hubzilla-11aa83742e7926c97b6e1528209a011390fa3115.tar.gz volse-hubzilla-11aa83742e7926c97b6e1528209a011390fa3115.tar.bz2 volse-hubzilla-11aa83742e7926c97b6e1528209a011390fa3115.zip |
more logging of D* photo transactions
Diffstat (limited to 'include/diaspora.php')
-rwxr-xr-x | include/diaspora.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 5a19400da..05d17dd9c 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1394,6 +1394,9 @@ function diaspora_message($importer,$xml,$msg) { function diaspora_photo($importer,$xml,$msg) { $a = get_app(); + + logger('diaspora_photo: init',LOGGER_DEBUG); + $remote_photo_path = notags(unxmlify($xml->remote_photo_path)); $remote_photo_name = notags(unxmlify($xml->remote_photo_name)); @@ -1408,10 +1411,13 @@ function diaspora_photo($importer,$xml,$msg) { $created_at = notags(unxmlify($xml_created_at)); + logger('diaspora_photo: status_message_guid: ' . $status_message_guid, LOGGER_DEBUG); $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']); - if(! $contact) + if(! $contact) { + logger('diaspora_photo: contact record not found: ' . $msg['author'] . ' handle: ' . $diaspora_handle); return; + } if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { logger('diaspora_photo: Ignoring this author.'); @@ -1426,6 +1432,7 @@ function diaspora_photo($importer,$xml,$msg) { logger('diaspora_photo: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid); return; } + $parent_item = $r[0]; $link_text = '[img]' . $remote_photo_path . $remote_photo_name . '[/img]' . "\n"; |