From ce6d4da592dd6bf1f78533f982a8ed4b9f8dce21 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 12 Feb 2024 17:05:24 +0200 Subject: [PATCH] fix typo --- files/helpers/bleach_body.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/helpers/bleach_body.py b/files/helpers/bleach_body.py index 0d1e2b261..07afded2e 100644 --- a/files/helpers/bleach_body.py +++ b/files/helpers/bleach_body.py @@ -7,7 +7,7 @@ from files.helpers.regex import sanitize_url_regex from files.helpers.config.const import * allowed_tags = ('a','audio','b','big','blink','blockquote','br','center','code','del','details','em','g','gl','h1','h2','h3','h4','h5','h6','hr','i','img','li','lite-youtube','marquee','ol','p','pre','rp','rt','ruby','small','span','spoiler','strike','strong','sub','summary','sup','table','tbody','td','th','thead','tr','u','ul','video') -allowed_tags_runstime = ('div', 'input', 'label', 'score', 'button', 'd') +allowed_tags_runtime = ('div', 'input', 'label', 'score', 'button', 'd') allowed_css_properties = ('background-color', 'color', 'filter', 'font-weight', 'text-align', 'transform') def allowed_attributes(tag, name, value): @@ -67,7 +67,7 @@ def allowed_attributes(tag, name, value): if tag == 'table': if name == 'class' and value == 'table': return True - if tag in allowed_tags_runstime: + if tag in allowed_tags_runtime: return True return False @@ -78,7 +78,7 @@ def bleach_body_html(body_html, runtime=False): tags = allowed_tags if runtime: - tags += allowed_tags_runstime + tags += allowed_tags_runtime body_html = bleach.Cleaner( tags=tags,