1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-23 23:20:57 +01:00

fix incorrect function call in body length check

This commit is contained in:
James Franco 2023-06-17 22:20:05 -05:00 committed by GitHub
parent 1a39025162
commit d8732d3d30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -728,7 +728,7 @@ if (isset($_POST['delete'])) {
error(sprintf($config['error']['toolong'], 'email'));
if (mb_strlen($post['subject']) > 100)
error(sprintf($config['error']['toolong'], 'subject'));
if (!$mod && substr_count($post['body']) > $config['max_body'])
if (!$mod && mb_strlen($post['body']) > $config['max_body'])
error($config['error']['toolong_body']);
if (!$mod && substr_count($post['body'], "\n") >= $config['max_lines'])
error($config['error']['toomanylines']);