diff options
author | friendica <info@friendica.com> | 2013-06-29 21:27:01 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-06-29 21:27:01 -0700 |
commit | 29502438f807275ab8ea8259ca261117e561c962 (patch) | |
tree | 310e97c4213902144220169a18dc3c908ee7236d | |
parent | 070aeeefd63cbf87e5ce9dc3b4b476ff33fd58d3 (diff) | |
download | volse-hubzilla-29502438f807275ab8ea8259ca261117e561c962.tar.gz volse-hubzilla-29502438f807275ab8ea8259ca261117e561c962.tar.bz2 volse-hubzilla-29502438f807275ab8ea8259ca261117e561c962.zip |
partial implementation of issue #64 - local tag storage linked to the tagged item has been provided. tag deletion, comment tagging, and full testing of this feature are still outstanding.
-rw-r--r-- | mod/tagger.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/tagger.php b/mod/tagger.php index 28e10d131..6ad026f62 100644 --- a/mod/tagger.php +++ b/mod/tagger.php @@ -122,6 +122,7 @@ function tagger_content(&$a) { $arr['object'] = $obj; $arr['parent_mid'] = $item['mid']; + store_item_tag($item['uid'],$item['id'],TERM_OBJ_POST,TERM_HASHTAG,$term); $ret = post_activity_item($arr); if($ret['success']) |