Additional check to ensure that the owner of an activity is always the author
This commit is contained in:
parent
510032444f
commit
acf31ab64b
|
@ -2349,6 +2349,12 @@ class DFRN
|
||||||
if (Item::exists($condition)) {
|
if (Item::exists($condition)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The owner of an activity must be the author
|
||||||
|
$item["owner-name"] = $item["author-name"];
|
||||||
|
$item["owner-link"] = $item["author-link"];
|
||||||
|
$item["owner-avatar"] = $item["author-avatar"];
|
||||||
|
$item["owner-id"] = $item["author-id"];
|
||||||
} else {
|
} else {
|
||||||
$is_like = false;
|
$is_like = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user