diff options
author | friendica <info@friendica.com> | 2014-08-29 17:31:40 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-29 17:31:40 -0700 |
commit | 88f8900ac52aa1b4bba90d000691dfa311ad2a92 (patch) | |
tree | bad032cf26eadf885ab90cb26e91bd53ba50e654 /mod | |
parent | 345d170236572866c0aa29698d5089f4d2bf7c11 (diff) | |
download | volse-hubzilla-88f8900ac52aa1b4bba90d000691dfa311ad2a92.tar.gz volse-hubzilla-88f8900ac52aa1b4bba90d000691dfa311ad2a92.tar.bz2 volse-hubzilla-88f8900ac52aa1b4bba90d000691dfa311ad2a92.zip |
various diaspora issues
Diffstat (limited to 'mod')
-rw-r--r-- | mod/item.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mod/item.php b/mod/item.php index df51c8a92..c1dd15eb1 100644 --- a/mod/item.php +++ b/mod/item.php @@ -851,6 +851,11 @@ function item_post(&$a) { // NOTREACHED } + if($parent) { + // Store the comment signature information in case we need to relay to Diaspora +//FIXME + store_diaspora_comment_sig($datarray,$channel,$parent_item, $post_id); + } update_remote_id($channel,$post_id,$webpage,$pagetitle,$namespace,$remote_id,$mid); @@ -1312,3 +1317,4 @@ function item_check_service_class($channel_id,$iswebpage) { $ret['success'] = true; return $ret; } + |