Browse Source

Reject blank posts? (just whitespace, etc).

pull/40/head
Savetheinternet 13 years ago
parent
commit
ba5075ebbd
  1. 4
      inc/config.php
  2. 9
      post.php

4
inc/config.php

@ -67,7 +67,9 @@
$config['flood_time_same'] = 30;
// Do you need a body for your non-OP posts?
$config['force_body'] = true;
// Reject blank posts? (just whitespace, etc)?
$config['reject_blank'] = true;
// Max body length
$config['max_body'] = 1800;

9
post.php

@ -209,11 +209,16 @@
$post['password'] = $_POST['password'];
$post['filename'] = get_magic_quotes_gpc() ? stripslashes($_FILES['file']['name']) : $_FILES['file']['name'];
$post['has_file'] = $OP || !empty($_FILES['file']['tmp_name']);
$post['mod'] = isset($_POST['mod']) && $_POST['mod'];
if(empty($post['body']) && $config['force_body'])
if($config['force_body'] && empty($post['body']))
error($config['error']['tooshort_body']);
if($config['reject_blank'] && !empty($post['body'])) {
$stripped_whitespace = preg_replace('/[\s]/u', '', $post['body']);
if(empty($stripped_whitespace))
error($config['error']['tooshort_body']);
}
if($post['mod']) {
require 'inc/mod.php';
if(!$mod) {

Loading…
Cancel
Save