diff options
author | Mario <mario@mariovavti.com> | 2021-12-21 09:58:07 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-12-21 09:58:07 +0000 |
commit | 07110cee170970b840bbb479e9271a12b4810137 (patch) | |
tree | 2e9beaffd30c819cfdb840e23f4b712594495c25 /Zotlabs/Module/Item.php | |
parent | afa1f1416b3a19d5a4dcccd3a6224963c14b9b5d (diff) | |
download | volse-hubzilla-07110cee170970b840bbb479e9271a12b4810137.tar.gz volse-hubzilla-07110cee170970b840bbb479e9271a12b4810137.tar.bz2 volse-hubzilla-07110cee170970b840bbb479e9271a12b4810137.zip |
add the title to the object
Diffstat (limited to 'Zotlabs/Module/Item.php')
-rw-r--r-- | Zotlabs/Module/Item.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 66629fa2b..41979006e 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -1017,6 +1017,7 @@ class Item extends Controller { $obj['diaspora:guid'] = $uuid; $obj['attributedTo'] = channel_url($channel); $obj['published'] = $created; + $obj['name'] = $title; $datarray['obj'] = $obj; |