diff --git a/files/helpers/const.py b/files/helpers/const.py index 817b63094..25f111075 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -592,6 +592,7 @@ elif SITE == 'watchpeopledie.tv': else: # localhost or testing environment implied FEATURES['PRONOUNS'] = True FEATURES['HOUSES'] = True + FEATURES['USERS_PERMANENT_WORD_FILTERS'] = True HOUSES = ["None","Furry","Femboy","Vampire","Racist"] if FEATURES['HOUSES'] else ["None"] diff --git a/files/templates/settings_personal.html b/files/templates/settings_personal.html index 4e97998c0..75ecf6c35 100644 --- a/files/templates/settings_personal.html +++ b/files/templates/settings_personal.html @@ -219,8 +219,8 @@ {% if FEATURES['USERS_PERMANENT_WORD_FILTERS'] and v.profanityreplacer %} {% set ns.profanitytext = 'Enable if you would like to automatically replace profanities. Make filter permanent for a badge!' %} {% endif %} - {{common.toggle_section("Slur Replacer", "slurreplacer", v.slurreplacer, slurtext, FEATURES['USERS_PERMANENT_WORD_FILTERS'] and v.slurreplacer > 1)}} - {{common.toggle_section("Profanity Replacer", "profanityreplacer", v.slurreplacer, profanitytext, FEATURES['USERS_PERMANENT_WORD_FILTERS'] and v.profanityreplacer > 1)}} + {{common.toggle_section("Slur Replacer", "slurreplacer", v.slurreplacer, ns.slurtext, FEATURES['USERS_PERMANENT_WORD_FILTERS'] and v.slurreplacer > 1)}} + {{common.toggle_section("Profanity Replacer", "profanityreplacer", v.slurreplacer, ns.profanitytext, FEATURES['USERS_PERMANENT_WORD_FILTERS'] and v.profanityreplacer > 1)}} {# profanity filter toggle (and lock?) #} {# slur filter toggle (and lock?) #}