From 45f99cc048482a4203551cbbd75e32d337cc2771 Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 15 Mar 2023 07:23:01 +0200 Subject: [PATCH] hide hidevotedon from rdrama --- files/templates/settings/advanced.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/files/templates/settings/advanced.html b/files/templates/settings/advanced.html index 22472fb9d..9b54afee4 100644 --- a/files/templates/settings/advanced.html +++ b/files/templates/settings/advanced.html @@ -132,7 +132,9 @@ {% if FEATURES['NSFW_MARKING'] %} {{common.toggle_section('Disable +18 Warnings', 'over_18', 'over_18', v.over_18, "Disable the warnings that appear when viewing +18 content.", false)}} {% endif %} - {{common.toggle_section('Hide Posts Voted On', 'hidevotedon', 'hidevotedon', v.hidevotedon, 'Enable if you would like to automatically hide posts you have voted on from your frontpage.', false)}} + {% if SITE_NAME != 'rDrama' %} + {{common.toggle_section('Hide Posts Voted On', 'hidevotedon', 'hidevotedon', v.hidevotedon, 'Enable if you would like to automatically hide posts you have voted on from your frontpage.', false)}} + {% endif %}