mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-01-22 19:32:04 +01:00
post.php: format post length checks
This commit is contained in:
parent
1e47667b9a
commit
d4935786c6
15
post.php
15
post.php
@ -955,16 +955,21 @@ if (isset($_POST['delete'])) {
|
||||
|
||||
if (!$dropped_post) {
|
||||
// Check string lengths
|
||||
if (mb_strlen($post['name']) > 35)
|
||||
if (mb_strlen($post['name']) > 35) {
|
||||
error(sprintf($config['error']['toolong'], 'name'));
|
||||
if (mb_strlen($post['email']) > 40)
|
||||
}
|
||||
if (mb_strlen($post['email']) > 40) {
|
||||
error(sprintf($config['error']['toolong'], 'email'));
|
||||
if (mb_strlen($post['subject']) > 100)
|
||||
}
|
||||
if (mb_strlen($post['subject']) > 100) {
|
||||
error(sprintf($config['error']['toolong'], 'subject'));
|
||||
if (!$mod && mb_strlen($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['maximum_lines'])
|
||||
}
|
||||
if (!$mod && substr_count($post['body'], "\n") >= $config['maximum_lines']) {
|
||||
error($config['error']['toomanylines']);
|
||||
}
|
||||
}
|
||||
wordfilters($post['body']);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user