aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-10-02 12:54:25 +0200
committerMario Vavti <mario@mariovavti.com>2017-10-02 12:56:15 +0200
commit2feb6795b0a5e08a8ec5c5bd7a2bf87ec43c4c5e (patch)
treea77179fa5a8360f765fae208af7c414ae021ef1f
parentd11d36040d189431a85d0e379fc2af2ca8ed8756 (diff)
downloadvolse-hubzilla-2feb6795b0a5e08a8ec5c5bd7a2bf87ec43c4c5e.tar.gz
volse-hubzilla-2feb6795b0a5e08a8ec5c5bd7a2bf87ec43c4c5e.tar.bz2
volse-hubzilla-2feb6795b0a5e08a8ec5c5bd7a2bf87ec43c4c5e.zip
fix community tags not preserved on post edit. issue #865
-rw-r--r--Zotlabs/Module/Item.php2
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'],