diff options
author | friendica <redmatrix@redmatrix.me> | 2015-04-20 20:14:07 -0700 |
---|---|---|
committer | friendica <redmatrix@redmatrix.me> | 2015-04-20 20:14:07 -0700 |
commit | 53339d19a391e66635c21199484f1e4afa7b2ec7 (patch) | |
tree | aec89b9967e032f1a1a6ead19d60d6a6c2a62de2 /mod/item.php | |
parent | 3eeea9d8f04064f26c7e31d590f7bf7ced140367 (diff) | |
download | volse-hubzilla-53339d19a391e66635c21199484f1e4afa7b2ec7.tar.gz volse-hubzilla-53339d19a391e66635c21199484f1e4afa7b2ec7.tar.bz2 volse-hubzilla-53339d19a391e66635c21199484f1e4afa7b2ec7.zip |
issue #176, sender copy of item not obscured if using private mention
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index d80241f2d..a732a9f81 100644 --- a/mod/item.php +++ b/mod/item.php @@ -602,7 +602,7 @@ function item_post(&$a) { if($results) { // Set permissions based on tag replacements - set_linkified_perms($results, $str_contact_allow, $str_group_allow, $profile_uid, $parent_item); + set_linkified_perms($results, $str_contact_allow, $str_group_allow, $profile_uid, $parent_item, $private); $post_tags = array(); foreach($results as $result) { |