From 3ec515e10622550819b8550e83ff264311f8ce93 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 15 Feb 2021 15:53:46 +0100 Subject: [PATCH] Fix default value --- htdocs/core/class/utils.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/utils.class.php b/htdocs/core/class/utils.class.php index d4dbe5c2a8b..9cf8439483a 100644 --- a/htdocs/core/class/utils.class.php +++ b/htdocs/core/class/utils.class.php @@ -63,7 +63,7 @@ class Utils require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; if (empty($choices)) { - $choices = 'tempfilesold,logfiles'; + $choices = 'tempfilesold+logfiles'; } dol_syslog("Utils::purgeFiles choice=".$choices, LOG_DEBUG);