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

Merge pull request #585 from vichan-devel/RealAngeleno-patch-5

Change variable for max lines to prevent conflict
This commit is contained in:
RealAngeleno 2023-06-25 05:27:10 -07:00 committed by GitHub
commit e912ee24ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -496,7 +496,7 @@
// Maximum post body length.
$config['max_body'] = 1800;
// Maximum number of lines allowed in a post.
$config['max_lines'] = 100;
$config['maximum_lines'] = 100;
// Maximum number of post body lines to show on the index page.
$config['body_truncate'] = 15;
// Maximum number of characters to show on the index page.

View File

@ -730,7 +730,7 @@ 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 && substr_count($post['body'], "\n") >= $config['max_lines'])
if (!$mod && substr_count($post['body'], "\n") >= $config['maximum_lines'])
error($config['error']['toomanylines']);
if (mb_strlen($post['password']) > 20)
error(sprintf($config['error']['toolong'], 'password'));