Fixed force_body and force_body_op
This commit is contained in:
parent
d51f6a932e
commit
e089acd1eb
9
post.php
9
post.php
@ -246,13 +246,11 @@
|
||||
elseif(empty($post['body']))
|
||||
error($config['error']['tooshort_body']);
|
||||
|
||||
if($config['force_body'] && empty($post['body']))
|
||||
error($config['error']['tooshort_body']);
|
||||
|
||||
if($config['force_body'] && !empty($post['body'])) {
|
||||
if($OP && $config['force_body_op'] || !$OP && $config['force_body']) {
|
||||
$stripped_whitespace = preg_replace('/[\s]/u', '', $post['body']);
|
||||
if(empty($stripped_whitespace))
|
||||
if(empty($stripped_whitespace )) {
|
||||
error($config['error']['tooshort_body']);
|
||||
}
|
||||
}
|
||||
|
||||
if($post['mod']) {
|
||||
@ -317,7 +315,6 @@
|
||||
if(strlen($post['email']) > 40) error(sprintf($config['error']['toolong'], 'email'));
|
||||
if(strlen($post['subject']) > 100) error(sprintf($config['error']['toolong'], 'subject'));
|
||||
if(!$mod && strlen($post['body']) > $config['max_body']) error($config['error']['toolong_body']);
|
||||
if($config['force_body_op'] && empty($post['body'])) error($config['error']['tooshort_body']);
|
||||
if(strlen($post['password']) > 20) error(sprintf($config['error']['toolong'], 'password'));
|
||||
|
||||
wordfilters($post['body']);
|
||||
|
Loading…
Reference in New Issue
Block a user