aboutsummaryrefslogtreecommitdiffstats
path: root/mod/item.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-10 20:44:17 -0700
committerfriendica <info@friendica.com>2012-07-10 20:44:17 -0700
commit31c218e785931bcb69f0abc058056ad5f60ae28c (patch)
tree3cf09b10478cb160fd83665f0618ea1fd568c600 /mod/item.php
parentcc35457971c769c2ad64927814e31617dc2b618f (diff)
downloadvolse-hubzilla-31c218e785931bcb69f0abc058056ad5f60ae28c.tar.gz
volse-hubzilla-31c218e785931bcb69f0abc058056ad5f60ae28c.tar.bz2
volse-hubzilla-31c218e785931bcb69f0abc058056ad5f60ae28c.zip
catchup
Diffstat (limited to 'mod/item.php')
-rw-r--r--mod/item.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/mod/item.php b/mod/item.php
index 7dd4eff76..7e8d0499d 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -1050,16 +1050,11 @@ function store_diaspora_comment_sig($datarray, $author, $uprvkey, $parent_item,
require_once('include/bb2diaspora.php');
$signed_body = html_entity_decode(bb2diaspora($datarray['body']));
-// $myaddr = $user['nickname'] . '@' . substr($baseurl, strpos($baseurl,'://') + 3);
-// if( $author['network'] === NETWORK_DIASPORA)
-// $diaspora_handle = $author['addr'];
-// else {
// Only works for NETWORK_DFRN
$contact_baseurl_start = strpos($author['url'],'://') + 3;
$contact_baseurl_length = strpos($author['url'],'/profile') - $contact_baseurl_start;
$contact_baseurl = substr($author['url'], $contact_baseurl_start, $contact_baseurl_length);
$diaspora_handle = $author['nick'] . '@' . $contact_baseurl;
-// }
$signed_text = $datarray['guid'] . ';' . $parent_item['guid'] . ';' . $signed_body . ';' . $diaspora_handle;