Quote:
Originally Posted by Ted S
Open the file lgvdb.php and replace
Code:
$vbulletin->db->query_write("
DELETE FROM " . TABLE_PREFIX . "lgv
WHERE (lastactivity + (". $vbulletin->options['lgvcleardays'] ." * 86400)) < ". TIMENOW ."
");
With code
Code:
$vbulletin->db->query_write("
DELETE FROM " . TABLE_PREFIX . "lgv
WHERE (lastactivity + (30 * 86400)) < ". TIMENOW ."
");
|
Thanks Ted ... I did that ...
I just turned ON logging ...
I notice that the AdminCP options do not show 30 days, but still the "Never" to 3 day range ...
I left the "Never" checked, but I assume your code change above overrides that and the cron job will clear it out at 30 days now?
Appreciate your help ... :up:
Regards,
Doug