From dcd43b71dc795731f32dcf6768eac0ae488614b3 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Wed, 27 Nov 2024 21:55:39 +0100 Subject: [PATCH] config.php: add minimum body length option --- inc/config.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inc/config.php b/inc/config.php index 454cae4f..de6a8e35 100644 --- a/inc/config.php +++ b/inc/config.php @@ -578,6 +578,8 @@ $config['max_threads_per_hour'] = 30; // Maximum post body length. $config['max_body'] = 1800; + // Minimum post body length. + $config['min_body'] = 0; // Maximum number of lines allowed in a post. $config['maximum_lines'] = 100; // Maximum number of post body lines to show on the index page.