aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-06-10 08:22:43 +0000
committerMario <mario@mariovavti.com>2024-06-10 08:22:43 +0000
commit388e7c88dff956dca9e3498076e9f3cf49a153c8 (patch)
tree3bf21521a3b7e49299faa57605c9ec683726493f /Zotlabs/Lib
parent9348bd6ea5bc8573201ed773c1de26949dd1b510 (diff)
downloadvolse-hubzilla-388e7c88dff956dca9e3498076e9f3cf49a153c8.tar.gz
volse-hubzilla-388e7c88dff956dca9e3498076e9f3cf49a153c8.tar.bz2
volse-hubzilla-388e7c88dff956dca9e3498076e9f3cf49a153c8.zip
remove superfluous param, fix wrong var and declare types for unparse_url()
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r--Zotlabs/Lib/Activity.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php
index b628221fb..5613e6bda 100644
--- a/Zotlabs/Lib/Activity.php
+++ b/Zotlabs/Lib/Activity.php
@@ -70,7 +70,7 @@ class Activity {
}
if ($items) {
- return self::encode_item(array_shift($items), true);
+ return self::encode_item(array_shift($items));
}
return null;
@@ -2902,7 +2902,7 @@ class Activity {
if (intval($parent[0]['item_private'])) {
if (!intval($item['item_private'])) {
- $item['item_private'] = intval($parent_item['item_private']);
+ $item['item_private'] = intval($parent[0]['item_private']);
$item['allow_cid'] = '<' . $channel['channel_hash'] . '>';
$item['allow_gid'] = $item['deny_cid'] = $item['deny_gid'] = '';
}