By John Wang on Tuesday, 10 October 2017
Posted in General
Replies 3
Likes 0
Views 463
Votes 0
Hi:
Anonymous users post discussion posts will generate stream activities on easysocial showing the real name of theirs. I think this shouldn't happen. Users post a discussion post as anonymous user, their real names should not appear on easysocial. Could you help to solve this issue?
Thanks for reporting this. I have fixed this internally and you can fix this by editing the file /administrator/components/com_easydiscuss/includes/post/post.php and at line 4954, replace the codes below,

[gist]
if (!isset($this->saveOptions['saveFromEasysocialStory']) && !$this->isReply()) {
[/gist]

With,

[gist]
if (!isset($this->saveOptions['saveFromEasysocialStory']) && !$this->isReply() && !$this->isAnonymous()) {
[/gist]
·
Tuesday, 10 October 2017 23:10
·
0 Likes
·
0 Votes
·
0 Comments
·
Hope next release will be fixed
·
Tuesday, 10 October 2017 23:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes, this will be fixed in the next release of EasyDiscuss
·
Tuesday, 10 October 2017 23:35
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post