Browse Source

fix previous commit

pull/40/head
czaks 10 years ago
parent
commit
1fb362a7c0
  1. 4
      post.php

4
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']);
@ -166,8 +168,6 @@ if (isset($_POST['delete'])) {
if (!isset($_POST['password']))
$_POST['password'] = '';
$post = array('board' => $_POST['board']);
if (isset($_POST['thread'])) {
$post['op'] = false;
$post['thread'] = round($_POST['thread']);

Loading…
Cancel
Save