Quote:
Originally Posted by mfyvie
Your suggestion seems to have nothing to do with modification (unless I have missed something). If you'd like to make a suggestion about writing a different hack, please use the appropriate forum at vbulletin.org for this purpose.
|
I am not familiar on writing mods, but I have manually edited the following in the register.php file:
PHP Code:
foreach ($newemails AS $toemail)
{
if (trim($toemail))
{
vbmail($toemail, $subject, $message);
}
}
and changed to:
PHP Code:
global $isbot_time1;
$isbot_timediff = intval(TIMENOW - $isbot_time1);
foreach ($newemails AS $toemail)
{
if (trim($toemail))
{
vbmail($toemail, $subject, $message."\nRegistration preiod: $isbot_timediff sec.");
}
}
Now each time I get New User Notification it shows me how much time has a real user passed during registration. Maybe you can arrange this manual change as plugin/mod?