diff options
author | friendica <info@friendica.com> | 2015-02-14 21:57:47 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-14 21:57:47 -0800 |
commit | 7ad425bbda549c3937c2feeac593bdcd21167019 (patch) | |
tree | 5ccb642a2d83f4c0c09f21e7af0e33cf10572c13 /mod/item.php | |
parent | 59828593c14a64cecf7ee5c077da9f918062ed60 (diff) | |
download | volse-hubzilla-7ad425bbda549c3937c2feeac593bdcd21167019.tar.gz volse-hubzilla-7ad425bbda549c3937c2feeac593bdcd21167019.tar.bz2 volse-hubzilla-7ad425bbda549c3937c2feeac593bdcd21167019.zip |
failure to auto update comments if it's your own.
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 eb823b4b0..dbee2df3b 100644 --- a/mod/item.php +++ b/mod/item.php @@ -644,7 +644,7 @@ function item_post(&$a) { } } - $item_unseen = ((local_channel() != $profile_uid) ? 1 : 0); + $item_unseen = 1; if($post_type === 'wall' || $post_type === 'wall-comment') $item_flags = $item_flags | ITEM_WALL; |