diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-10-02 12:54:25 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-10-02 12:56:15 +0200 |
commit | 2feb6795b0a5e08a8ec5c5bd7a2bf87ec43c4c5e (patch) | |
tree | a77179fa5a8360f765fae208af7c414ae021ef1f /Zotlabs | |
parent | d11d36040d189431a85d0e379fc2af2ca8ed8756 (diff) | |
download | volse-hubzilla-2feb6795b0a5e08a8ec5c5bd7a2bf87ec43c4c5e.tar.gz volse-hubzilla-2feb6795b0a5e08a8ec5c5bd7a2bf87ec43c4c5e.tar.bz2 volse-hubzilla-2feb6795b0a5e08a8ec5c5bd7a2bf87ec43c4c5e.zip |
fix community tags not preserved on post edit. issue #865
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 5e7a3fbc0..eb8b60931 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -685,7 +685,7 @@ class Item extends \Zotlabs\Web\Controller { foreach($t as $t1) { $post_tags[] = array( 'uid' => $profile_uid, - 'ttype' => $t1['type'], + 'ttype' => $t1['ttype'], 'otype' => TERM_OBJ_POST, 'term' => $t1['term'], 'url' => $t1['url'], |