From 8e9db69375525c9e364a6d1c63a3300948edd13b Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 18 Apr 2014 14:32:05 +0200 Subject: [PATCH] post.php: load config earlier --- post.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/post.php b/post.php index c14b85e3..7b356bc3 100644 --- a/post.php +++ b/post.php @@ -149,6 +149,10 @@ if (isset($_POST['delete'])) { } elseif (isset($_POST['post'])) { if (!isset($_POST['body'], $_POST['board'])) error($config['error']['bot']); + + // Check if board exists + if (!openBoard($post['board'])) + error($config['error']['noboard']); if (!isset($_POST['name'])) $_POST['name'] = $config['anonymous']; @@ -172,7 +176,7 @@ if (isset($_POST['delete'])) { $post['thread'] = round($_POST['quick-reply']); } else $post['op'] = true; - + if (!(($post['op'] && $_POST['post'] == $config['button_newtopic']) || (!$post['op'] && $_POST['post'] == $config['button_reply']))) error($config['error']['bot']); @@ -184,10 +188,6 @@ if (isset($_POST['delete'])) { checkDNSBL(); - // Check if board exists - if (!openBoard($post['board'])) - error($config['error']['noboard']); - // Check if banned checkBan($board['uri']);