From a431994016e0293112a8e3b40832eeec09dafbdf Mon Sep 17 00:00:00 2001 From: Michael Save Date: Tue, 14 Feb 2012 23:18:00 +1100 Subject: [PATCH] fixed bug causing "bot" errors when disabling fields on certain boards only --- post.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/post.php b/post.php index 596e8938..60322cef 100644 --- a/post.php +++ b/post.php @@ -151,14 +151,20 @@ if($config['field_disable_password']) $_POST['password'] = ''; - if( !isset($_POST['name']) || - !isset($_POST['email']) || - !isset($_POST['subject']) || + if( !isset($_POST['subject']) || !isset($_POST['body']) || - !isset($_POST['board']) || - !isset($_POST['password']) + !isset($_POST['board']) ) error($config['error']['bot']); + if(!isset($_POST['name'])) + $_POST['name'] = $config['anonymous']; + + if(!isset($_POST['email'])) + $_POST['email'] = ''; + + if(!isset($_POST['password'])) + $_POST['password'] = ''; + $post = Array('board' => $_POST['board']); if(isset($_POST['thread'])) {