aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-25 16:21:38 -0800
committerredmatrix <git@macgirvin.com>2016-02-25 16:21:38 -0800
commitdc8c7a2d2e8060d295c46637e2f1caac76aca6fa (patch)
tree33b2f1b54b43643b81a98d34107ec096898c0cd6 /mod
parentba2ede0a8f82be98994f129655dbb78d5c024e47 (diff)
downloadvolse-hubzilla-dc8c7a2d2e8060d295c46637e2f1caac76aca6fa.tar.gz
volse-hubzilla-dc8c7a2d2e8060d295c46637e2f1caac76aca6fa.tar.bz2
volse-hubzilla-dc8c7a2d2e8060d295c46637e2f1caac76aca6fa.zip
small improvements to profile like activity
Diffstat (limited to 'mod')
-rwxr-xr-xmod/like.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/mod/like.php b/mod/like.php
index ce8bc3063..26c39bf3b 100755
--- a/mod/like.php
+++ b/mod/like.php
@@ -107,13 +107,13 @@ function like_content(&$a) {
// to them.
$allow_cid = $allow_gid = $deny_cid = $deny_gid = '';
foreach($d as $dd) {
- $allow_gid .= '<' . $dd['abook_xchan'] . '>';
+ $allow_cid .= '<' . $dd['abook_xchan'] . '>';
}
}
$post_type = t('channel');
$objtype = ACTIVITY_OBJ_PROFILE;
-
+ $profile = $r[0];
}
elseif($obj_type == 'thing') {
@@ -462,6 +462,13 @@ function like_content(&$a) {
if($obj_type === 'thing' && $r[0]['imgurl']) {
$arr['body'] .= "\n\n[zmg=80x80]" . $r[0]['imgurl'] . '[/zmg]';
}
+ if($obj_type === 'profile') {
+ if($public) {
+ $arr['body'] .= "\n\n" . '[embed]' . z_root() . '/profile/' . $ch[0]['channel_address'] . '[/embed]';
+ }
+ else
+ $arr['body'] .= "\n\n[zmg=80x80]" . $profile['thumb'] . '[/zmg]';
+ }
$arr['verb'] = $activity;