Fix pandora_db string data purge

This commit is contained in:
fbsanchez 2017-10-10 11:26:04 +02:00
parent ec95400043
commit 4fc33ec58b
1 changed files with 1 additions and 1 deletions
pandora_server/util

View File

@ -178,7 +178,7 @@ sub pandora_purgedb ($$) {
if ($conf->{'_string_purge'} > 0) {
$ulimit_access_timestamp = time() - 86400;
$ulimit_timestamp = time() - (86400 * $conf->{'_days_purge'});
$ulimit_timestamp = time() - (86400 * $conf->{'_string_purge'});
pandora_delete_old_module_data ($dbh, 'tagente_datos_string', $ulimit_access_timestamp, $ulimit_timestamp);
}
else {