Browse Source

Add E Z board locking feature

pull/40/head
Wesley 9 years ago
parent
commit
2d396c4eb8
  1. 4
      post.php

4
post.php

@ -16,6 +16,10 @@ if (get_magic_quotes_gpc()) {
$_POST = strip_array($_POST); $_POST = strip_array($_POST);
} }
if (!$_POST['mod'] && $config['board_locked']) {
error("Board is locked");
}
if (isset($_POST['delete'])) { if (isset($_POST['delete'])) {
// Delete // Delete

Loading…
Cancel
Save