mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-17 11:43:43 +00:00
Even more standards
This commit is contained in:
parent
a39b9b47d2
commit
a4b61a4157
1 changed files with 7 additions and 7 deletions
|
@ -451,11 +451,11 @@ function pumpio_send(&$a, &$b)
|
|||
}
|
||||
|
||||
if (($b['verb'] == ACTIVITY_POST) && ($b['created'] !== $b['edited']) && !$b['deleted']) {
|
||||
pumpio_action($a, $b["uid"], $b["uri"], "update", $b["body"]);
|
||||
pumpio_action($a, $b["uid"], $b["uri"], "update", $b["body"]);
|
||||
}
|
||||
|
||||
if (($b['verb'] == ACTIVITY_POST) && $b['deleted']) {
|
||||
pumpio_action($a, $b["uid"], $b["uri"], "delete");
|
||||
pumpio_action($a, $b["uid"], $b["uri"], "delete");
|
||||
}
|
||||
|
||||
if ($b['deleted'] || ($b['created'] !== $b['edited'])) {
|
||||
|
@ -491,8 +491,8 @@ function pumpio_send(&$a, &$b)
|
|||
|
||||
if (!$iscomment) {
|
||||
$params["object"] = [
|
||||
'objectType' => "note",
|
||||
'content' => $content];
|
||||
'objectType' => "note",
|
||||
'content' => $content];
|
||||
|
||||
if ($title != "") {
|
||||
$params["object"]["displayName"] = $title;
|
||||
|
@ -522,9 +522,9 @@ function pumpio_send(&$a, &$b)
|
|||
}
|
||||
|
||||
$params["object"] = [
|
||||
'objectType' => "comment",
|
||||
'content' => $content,
|
||||
'inReplyTo' => $inReplyTo];
|
||||
'objectType' => "comment",
|
||||
'content' => $content,
|
||||
'inReplyTo' => $inReplyTo];
|
||||
|
||||
if ($title != "") {
|
||||
$params["object"]["displayName"] = $title;
|
||||
|
|
Loading…
Reference in a new issue