That should be here in the common language file:BF79 wrote: Sun Oct 01, 2023 3:25 pm I want to change Anonymous by unknown .... where to edit ?
thanks guys
thanks broToxyy wrote: Sun Oct 01, 2023 11:32 pmThat should be here in the common language file:BF79 wrote: Sun Oct 01, 2023 3:25 pm I want to change Anonymous by unknown .... where to edit ?
thanks guys
https://github.com/toxyy/anonymousposts ... on.php#L21
As far as I know pull requests should work just fine.max-ima wrote: Wed Oct 04, 2023 8:08 am Translated into Slovenian, but it does not go to Github: Uploads are disabled.
Thanks !Mick wrote: Fri Nov 10, 2023 2:16 pm There’s a large topic on the subject of GDPR here: viewtopic.php?t=2473146
Yeah, I know.Mick wrote: Fri Nov 10, 2023 2:25 pm Most users on phpBB boards use nicknames anyway so there’s no way anyone could fathom out a persons private information from that.
This is already how the extension works, except its currently just controlled when you post. When posting, you can select the checkbox "Post Anonymously":aamot wrote: Fri Nov 10, 2023 1:27 pm If possible, it should be like this: Username is not displayed
for other than mod and admin.
Everyone else sees "Member".
But there might well be a checkbox in the profile where you can choose "show profile name" - e.g. "Member" or "John Doe".
(Then you make the choice yourself - within the GDPR legislation.).
This solution may be of interest to many today,
as many people don't really want to come forward with their names on everything they write,
at the same time mod and admin MUST see who has written, should situations arise where "law and order" is actualized.
If this can be developed, I would be happy to beta test the functions!
Friendly regards, Asbjørn.
Norway
I could do this as well, but the problem with that is that the topic already exists and people could have seen it. Just because you anonymize your information in the future doesn't mean that members won't remember or know who made the topic or replied in it, especially if they reference that member by name. If I were to refer to you as halil right now, that would be essentially impossible to scrub. I believe that changing the anonymous status of a post automatically updates notifications accordingly, and possibly quotations as well, it's been a while since I've tested it, so I don't think I'll have to do super extensive work to get that done other than hooking into the code I've already made for it.halil16 wrote: Fri Nov 10, 2023 3:14 pm A feature like this can be added: A link called "Anonymize Topic" can be added to topic tools to later anonymise all messages of the topic owner in that topic.
Click > Anonymize Topic
Popup > All your posts on topic will be anonymized and will no longer be yours.
Yes or No
Code: Select all
$old_index = $new_index = 0;
//while ($row = $this->db->sql_fetchrow($result))
//{
// $old_index = is_null($row['old_index']) ? 0 : $row['old_index'];
// redundancy to ensure NO anon 0s... too critical of a bug.
// $new_index = ($row['new_index'] === 0) ? 1 : is_null($row['new_index']) ? 1 : $row['new_index'];
//}
//$this->db->sql_freeresult($result);
return (($old_index > 0) ? $old_index : [u]$old_index[/u]);
}