From d83376f155fb493d6e2303cae200f202161965b7 Mon Sep 17 00:00:00 2001 From: Benjamin Southall Date: Tue, 17 Jan 2017 22:55:46 +0900 Subject: [PATCH] Add min_body configuration option for post too short check --- post.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/post.php b/post.php index bbd0c628..c3dd9030 100644 --- a/post.php +++ b/post.php @@ -730,6 +730,8 @@ if (isset($_POST['delete'])) { error(sprintf($config['error']['toolong'], 'subject')); if (!$mod && mb_strlen($post['body']) > $config['max_body']) error($config['error']['toolong_body']); + if (!$mod && mb_strlen($post['body']) > 0 && mb_strlen($post['body']) < $config['min_body']) + error($config['error']['tooshort_body']); if (mb_strlen($post['password']) > 20) error(sprintf($config['error']['toolong'], 'password')); }