aboutsummaryrefslogtreecommitdiffstats
path: root/include/help.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2024-11-08 22:24:33 +0100
committerMario Vavti <mario@mariovavti.com>2024-11-08 22:24:33 +0100
commitebad9d56c9e9396847a66c07124e863cc2940b3c (patch)
tree427bf605076aaa25d3f3751d91fe97a4c5e6a462 /include/help.php
parent0481901b593f861366f9a766e0f020cce7a31be7 (diff)
downloadvolse-hubzilla-ebad9d56c9e9396847a66c07124e863cc2940b3c.tar.gz
volse-hubzilla-ebad9d56c9e9396847a66c07124e863cc2940b3c.tar.bz2
volse-hubzilla-ebad9d56c9e9396847a66c07124e863cc2940b3c.zip
port to containers item_store() continued
Diffstat (limited to 'include/help.php')
-rw-r--r--include/help.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/help.php b/include/help.php
index 12721a30b..5750da1a2 100644
--- a/include/help.php
+++ b/include/help.php
@@ -156,12 +156,12 @@ function store_doc_file($s) {
if($r) {
$item['id'] = $r[0]['id'];
$item['mid'] = $item['parent_mid'] = $r[0]['mid'];
- $x = item_store_update($item);
+ $x = item_store_update($item, deliver: false, addAndSync: false);
}
else {
$item['uuid'] = item_message_id();
$item['mid'] = $item['parent_mid'] = z_root() . '/item/' . $item['uuid'];
- $x = item_store($item);
+ $x = item_store($item, deliver: false, addAndSync: false);
}
return $x;