From 0da1c18a7ff2328a3cdd422e3f67d4b4bf403fb5 Mon Sep 17 00:00:00 2001 From: Macil Tech Date: Thu, 30 Aug 2012 04:07:23 -0600 Subject: [PATCH] Add field_disable_subject and field_disable_reply_subject config options. --- inc/config.php | 4 ++++ post.php | 8 +++++++- templates/post_form.html | 8 +++++++- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/inc/config.php b/inc/config.php index e977f066..ea936032 100644 --- a/inc/config.php +++ b/inc/config.php @@ -348,6 +348,10 @@ $config['field_disable_name'] = false; // When true, no email will be able to be set. $config['field_disable_email'] = false; + // When true, no subject will be able to be set. + $config['field_disable_subject'] = false; + // When true, no subject will be able to be set in replies. + $config['field_disable_reply_subject'] = false; // When true, a blank password will be used for files (not usable for deletion). $config['field_disable_password'] = false; diff --git a/post.php b/post.php index 98da7486..54065832 100644 --- a/post.php +++ b/post.php @@ -139,7 +139,7 @@ if (isset($_POST['delete'])) { header('Location: ' . $root . $board['dir'] . $config['file_index'], true, $config['redirect_http']); } elseif (isset($_POST['post'])) { - if (!isset($_POST['subject'], $_POST['body'], $_POST['board'])) + if (!isset($_POST['body'], $_POST['board'])) error($config['error']['bot']); if (!isset($_POST['name'])) @@ -148,6 +148,9 @@ if (isset($_POST['delete'])) { if (!isset($_POST['email'])) $_POST['email'] = ''; + if (!isset($_POST['subject'])) + $_POST['subject'] = ''; + if (!isset($_POST['password'])) $_POST['password'] = ''; @@ -271,6 +274,9 @@ if (isset($_POST['delete'])) { if ($config['field_disable_password']) $_POST['password'] = ''; + + if ($config['field_disable_subject'] || (!$post['op'] && $config['field_disable_reply_subject'])) + $_POST['subject'] = ''; } // Check for a file diff --git a/templates/post_form.html b/templates/post_form.html index 8b7350c7..aa051f5f 100644 --- a/templates/post_form.html +++ b/templates/post_form.html @@ -27,12 +27,18 @@ {% endif %} - + {% if not (config.field_disable_subject or (id and config.field_disable_reply_subject)) or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri)) %} {% trans %}Subject{% endtrans %} {{ antibot.html() }} + {% else %} + {% trans %}Submit{% endtrans %} + {{ antibot.html() }} + + + {% endif %} {% if config.spoiler_images %} {% endif %}