Merge branch '1442-fix-purgado-de-datos-string' into 'develop'
Fix pandora_db string data purge See merge request !909
This commit is contained in:
commit
bd29622bb7
pandora_server/util
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue