From 1fb362a7c0d9ce3250f9ff167171dab4add65743 Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 18 Apr 2014 14:33:50 +0200 Subject: [PATCH] fix previous commit --- post.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/post.php b/post.php index 7b356bc3..b18fc138 100644 --- a/post.php +++ b/post.php @@ -150,6 +150,8 @@ if (isset($_POST['delete'])) { if (!isset($_POST['body'], $_POST['board'])) error($config['error']['bot']); + $post = array('board' => $_POST['board']); + // Check if board exists if (!openBoard($post['board'])) error($config['error']['noboard']); @@ -164,9 +166,7 @@ if (isset($_POST['delete'])) { $_POST['subject'] = ''; if (!isset($_POST['password'])) - $_POST['password'] = ''; - - $post = array('board' => $_POST['board']); + $_POST['password'] = ''; if (isset($_POST['thread'])) { $post['op'] = false;