aboutsummaryrefslogtreecommitdiffstats
path: root/mod/like.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-23 03:12:31 -0700
committerFriendika <info@friendika.com>2011-09-23 03:12:31 -0700
commit3a2bf8ab7ced5f7cc88f8f48b372a0ad08735ed9 (patch)
treefafa7002e190d420602d816c8669788085c8db20 /mod/like.php
parenta2b2318106be9b133a7265697dc8776bcc248839 (diff)
downloadvolse-hubzilla-3a2bf8ab7ced5f7cc88f8f48b372a0ad08735ed9.tar.gz
volse-hubzilla-3a2bf8ab7ced5f7cc88f8f48b372a0ad08735ed9.tar.bz2
volse-hubzilla-3a2bf8ab7ced5f7cc88f8f48b372a0ad08735ed9.zip
w3c compliance fixes, owner attribution on likes defaulting to local owner, not item creator
Diffstat (limited to 'mod/like.php')
-rw-r--r--mod/like.php27
1 files changed, 24 insertions, 3 deletions
diff --git a/mod/like.php b/mod/like.php
index 287630212..95bedcc20 100644
--- a/mod/like.php
+++ b/mod/like.php
@@ -55,6 +55,22 @@ function like_content(&$a) {
return;
}
+ $remote_owner = null;
+
+ if(! $item['wall']) {
+ // The top level post may have been written by somebody on another system
+ $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
+ intval($item['contact-id']),
+ intval($item['uid'])
+ );
+ if(! count($r))
+ return;
+ if(! $r[0]['self'])
+ $remote_owner = $r[0];
+ }
+
+ // this represents the post owner on this system.
+
$r = q("SELECT `contact`.*, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1",
intval($owner_uid)
@@ -67,6 +83,11 @@ function like_content(&$a) {
return;
}
+ if(! $remote_owner)
+ $remote_owner = $owner;
+
+
+ // This represents the person posting
if((local_user()) && (local_user() == $owner_uid)) {
$contact = $owner;
@@ -137,9 +158,9 @@ EOT;
$arr['gravity'] = GRAVITY_LIKE;
$arr['parent'] = $item['id'];
$arr['parent-uri'] = $item['uri'];
- $arr['owner-name'] = $owner['name'];
- $arr['owner-link'] = $owner['url'];
- $arr['owner-avatar'] = $owner['thumb'];
+ $arr['owner-name'] = $remote_owner['name'];
+ $arr['owner-link'] = $remote_owner['url'];
+ $arr['owner-avatar'] = $remote_owner['thumb'];
$arr['author-name'] = $contact['name'];
$arr['author-link'] = $contact['url'];
$arr['author-avatar'] = $contact['thumb'];