From 845ff14e52607f8ec4c8505717fdc40a1123497a Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 10 Sep 2023 23:54:38 +0200 Subject: [PATCH] Simple anti-spam mechanism --- templates/post_form.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/post_form.html b/templates/post_form.html index 202ba906..51f711d9 100644 --- a/templates/post_form.html +++ b/templates/post_form.html @@ -213,13 +213,13 @@ {{ antibot.html() }} {% endif %} - {% if config.simple_anti_spam and not id %} + {% if config.simple_spam and not id %} - {{ config.simple_anti_spam.prompt }} + {{ config.simple_spam.prompt }} {{ antibot.html() }} - + {{ antibot.html() }} {% endif %}