Merge branch '1442-fix-purgado-de-datos-string' into 'develop'

Fix pandora_db string data purge

See merge request 
This commit is contained in:
vgilc 2017-10-10 12:58:32 +02:00
commit bd29622bb7
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 {