From a8fe635cf5fa9718fd611a71107f21760e775d15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sat, 4 Feb 2023 23:53:07 +0100 Subject: [PATCH] Enable HISTORY_SAVE_CHANGED_DATA and HISTORY_SAVE_REMOVED_DATA by default --- .env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env b/.env index 2de8731c..e380699e 100644 --- a/.env +++ b/.env @@ -56,9 +56,9 @@ ALLOW_EMAIL_PW_RESET=0 # Save which fields were changed in a ElementEdited log entry HISTORY_SAVE_CHANGED_FIELDS=1 # Save the old data in the ElementEdited log entry (warning this could increase the database size in short time) -HISTORY_SAVE_CHANGED_DATA=0 +HISTORY_SAVE_CHANGED_DATA=1 # Save the data of an element that gets removed into log entry. This allows to undelete an element -HISTORY_SAVE_REMOVED_DATA=0 +HISTORY_SAVE_REMOVED_DATA=1 ################################################################################### # Error pages settings