3.2 & 3.3 Extensions Database 3.2 / 3.3 ⇒ Delete Inactive Users
-
eunaumtenhoid
- Users

- Posts: 68
- Joined: 9 years ago
Re: Delete Inactive Users
Yeah lol ty for ext
Brazilian Portuguese translation by eunaumtenhoid [2019][ver 1.0.1]
https://github.com/phpBBTraducoes/deleteinactiveusers
Brazilian Portuguese translation by eunaumtenhoid [2019][ver 1.0.1]
https://github.com/phpBBTraducoes/deleteinactiveusers
Last edited by eunaumtenhoid 7 years ago, edited 2 times in total.
-
dmzx Online
- Founder

- Posts: 6549
- Joined: 12 years ago
Re: Delete Inactive Users
niceeunaumtenhoid wrote: 7 years ago yeah lol ty for ext
Brazilian Portuguese translation by eunaumtenhoid [2019][ver 1.0.1]
https://github.com/phpBBTraducoes/deleteinactiveusers
-
eunaumtenhoid
- Users

- Posts: 68
- Joined: 9 years ago
Re: Delete Inactive Users
DOUBT
deleting the user will delete his posts too?
could have an option to avoid that
deleting the user will delete his posts too?
could have an option to avoid that
-
ivailo95
- Users

- Posts: 920
- Joined: 8 years ago
Re: Delete Inactive Users
there is an option when deleting user thro the ACPeunaumtenhoid wrote: 7 years ago DOUBT
deleting the user will delete his posts too?
could have an option to avoid that

Feed like a disease
And bring them to their knees
They'll pay for their deceit
And bring them to their knees
They'll pay for their deceit
-
eunaumtenhoid
- Users

- Posts: 68
- Joined: 9 years ago
Re: Delete Inactive Users
Dude what does this have to do with the extension ??
-
ivailo95
- Users

- Posts: 920
- Joined: 8 years ago
Re: Delete Inactive Users
you said
here is the option to avoid iteunaumtenhoid wrote: 7 years ago DOUBT
deleting the user will delete his posts too?
could have an option to avoid that
-
eunaumtenhoid
- Users

- Posts: 68
- Joined: 9 years ago
Re: Delete Inactive Users
Man i'm talking about an option in this extension and not in the default phpbb sisteam 
-
ivailo95
- Users

- Posts: 920
- Joined: 8 years ago
Re: Delete Inactive Users
well..as you can see there is no option about it..eunaumtenhoid wrote: 7 years ago man i'm talking about an option in this extension and not in the default phpbb sisteam![]()
-
martin
- Admin

- Posts: 5139
- Joined: 12 years ago
Re: Delete Inactive Users
Not tested but if a user with a post count is deleted his posts should stay in place also his name but with no link to the profile.

-
stone23
- Users

- Posts: 46
- Joined: 7 years ago
Re: Delete Inactive Users
Hello,
There is a problem with the language in the notification email: the message is translated but the date remains in English.
In my opinion, the line 144 in the file deleteinactiveusers/cron/deleteinactiveusers_prune.php could be the source of the problem :
Can you watch so that the date appears in the user's language?
Thanks
There is a problem with the language in the notification email: the message is translated but the date remains in English.
In my opinion, the line 144 in the file deleteinactiveusers/cron/deleteinactiveusers_prune.php could be the source of the problem :
Code: Select all
'REGISTER_DATE' => date('g:ia \o\n l jS F Y', $value['regdate'])Thanks
-
dmzx Online
- Founder

- Posts: 6549
- Joined: 12 years ago
Re: Delete Inactive Users
Yes you are correct with the date.stone23 wrote: 6 years ago Hello,
There is a problem with the language in the notification email: the message is translated but the date remains in English.
In my opinion, the line 144 in the file deleteinactiveusers/cron/deleteinactiveusers_prune.php could be the source of the problem :Can you watch so that the date appears in the user's language?Code: Select all
'REGISTER_DATE' => date('g:ia \o\n l jS F Y', $value['regdate'])
Thanks
try this, but i did not test it just a quick thought, if it works let me know:
Code: Select all
$messenger->assign_vars([
'USERNAME' => htmlspecialchars_decode($value['name']),
'REGISTER_DATE' => $this->user->format_date($value['regdate'], false, true),
]);-
stone23
- Users

- Posts: 46
- Joined: 7 years ago
Re: Delete Inactive Users
Thank you for the answer. I test and I'll let you know.
Last edited by stone23 6 years ago, edited 1 time in total.
-
stone23
- Users

- Posts: 46
- Joined: 7 years ago
Re: Delete Inactive Users
I tested the code but the registration date does not appear in the notification email. it does not match