From 1e19e75bf5a8edafba82fb6d1e753b8d685b246d Mon Sep 17 00:00:00 2001 From: Fredrick Brennan Date: Mon, 29 Aug 2022 10:30:50 -0400 Subject: [PATCH] Change illogical default of $config[force_body] Makes JS and non-JS enforcement equivalent while providing a downgrade path. JS may not allow empty bodies even when $config[force_body] false. Don't care enough to fix. PR welcome. Close #493. --- inc/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/config.php b/inc/config.php index 59ccf66a..901ad195 100644 --- a/inc/config.php +++ b/inc/config.php @@ -475,7 +475,7 @@ */ // Do you need a body for your reply posts? - $config['force_body'] = false; + $config['force_body'] = true; // Do you need a body for new threads? $config['force_body_op'] = true; // Require an image for threads?