From 33d8c2951e46bec151c369061c7d1c1e112faa45 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Thu, 2 Mar 2023 11:38:00 +0100 Subject: [PATCH] (bug) MAX_SIZE env varibles should not be quoted (#438) --- CHANGELOG.md | 1 + setup/env.example | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9da3222b1..9889e50df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ - Fix a bug: members can't change/cancel their reservations - Fix a bug: admin events view should default to the list tab - Fix a bug: event creation form should not allow setting multiple times the same price category +- Fix a bug: MAX_SIZE env varibles should not be quoted (#438) ## v5.7.2 2023 February 24 diff --git a/setup/env.example b/setup/env.example index bf29f5052..cdc9495ad 100644 --- a/setup/env.example +++ b/setup/env.example @@ -49,10 +49,10 @@ ALLOW_INSECURE_HTTP=false ENABLE_SENTRY=false # 5242880 = 5 megabytes -MAX_IMPORT_SIZE='5242880' +MAX_IMPORT_SIZE=5242880 # 10485760 = 10 megabytes -MAX_IMAGE_SIZE='10485760' +MAX_IMAGE_SIZE=10485760 # 20971520 = 20 megabytes -MAX_CAO_SIZE='20971520' +MAX_CAO_SIZE=20971520 # 5242880 = 5 megabytes -MAX_SUPPORTING_DOCUMENT_FILE_SIZE='5242880' +MAX_SUPPORTING_DOCUMENT_FILE_SIZE=5242880