i like this Mod, because it helps manage the unactivated users.
The days are calculated as float, so you will not get the exact days after registering, that causes the "bug" posts before...
I modified the php sources to calculate the days other way - and the mod now is working very well also on 3.8.2
My hack lookes like this:
PHP Code:
$tag=date('Ymd',$user[joindate]);
$heute=date("Ymd");
$j=(int)substr($tag,0,4);
$m=(int)substr($tag,4,2);
$t=(int)substr($tag,6,2);
$datum3=date('Ymd',mktime(0,0,0,$m,$t+3,$j));
$datum5=date('Ymd',mktime(0,0,0,$m,$t+5,$j));
$datum8=date('Ymd',mktime(0,0,0,$m,$t+8,$j));
$datum10=date('Ymd',mktime(0,0,0,$m,$t+10,$j));
...
if ($heute == $datum3) // Email users who have not activated after 3 days.
...