diff options
author | Friendika <info@friendika.com> | 2011-10-20 02:07:38 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-20 02:07:38 -0700 |
commit | 852ece39f400add827c1980ee5b343f1bf71ee4e (patch) | |
tree | 5167349be8f71bc1c3c13f24f600c25b51035945 | |
parent | 33af8b0e202f720d94650bf63738895a473d7a0c (diff) | |
download | volse-hubzilla-852ece39f400add827c1980ee5b343f1bf71ee4e.tar.gz volse-hubzilla-852ece39f400add827c1980ee5b343f1bf71ee4e.tar.bz2 volse-hubzilla-852ece39f400add827c1980ee5b343f1bf71ee4e.zip |
more reshare logging to see what's going on
-rw-r--r-- | include/diaspora.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 24f4aac65..e432ed809 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -589,10 +589,13 @@ function diaspora_post($importer,$xml) { function diaspora_reshare($importer,$xml) { + logger('diaspora_reshare: init: ' . print_r($xml,true)); + $a = get_app(); $guid = notags(unxmlify($xml->guid)); $diaspora_handle = notags(unxmlify($xml->diaspora_handle)); + $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle); if(! $contact) return; |