mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-29 09:44:28 +01:00
Fixed bug regarding no-body posts (especially relevant to video embedding)
This commit is contained in:
parent
a79c734501
commit
56db0b0283
4
post.php
4
post.php
@ -243,10 +243,8 @@
|
||||
$post['mod'] = isset($_POST['mod']) && $_POST['mod'];
|
||||
if($post['has_file'])
|
||||
$post['filename'] = utf8tohtml(get_magic_quotes_gpc() ? stripslashes($_FILES['file']['name']) : $_FILES['file']['name']);
|
||||
elseif(empty($post['body']))
|
||||
error($config['error']['tooshort_body']);
|
||||
|
||||
if($OP && $config['force_body_op'] || !$OP && $config['force_body']) {
|
||||
if(!($post['has_file'] || isset($post['embed'])) || (($OP && $config['force_body_op']) || (!$OP && $config['force_body']))) {
|
||||
$stripped_whitespace = preg_replace('/[\s]/u', '', $post['body']);
|
||||
if(empty($stripped_whitespace )) {
|
||||
error($config['error']['tooshort_body']);
|
||||
|
Loading…
Reference in New Issue
Block a user