diff --git a/files/routes/comments.py b/files/routes/comments.py index 611b5fd19..40672c6ab 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -157,7 +157,7 @@ def api_comment(v): else: top_comment_id = parent.top_comment_id else: abort(400) - body = request.values.get("body", "").strip()[:10000].upper() + body = request.values.get("body", "").strip()[:10000] if v.marseyawarded: if time.time() > v.marseyawarded: @@ -615,7 +615,7 @@ def edit_comment(cid, v): if c.is_banned or c.deleted_utc > 0: abort(403) - body = request.values.get("body", "").strip()[:10000].upper() + body = request.values.get("body", "").strip()[:10000] if len(body) < 1: return {"error":"You have to actually type something!"}, 400 if body != c.body and body != "": diff --git a/files/routes/posts.py b/files/routes/posts.py index acaac1ddd..72b4b0264 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -335,8 +335,8 @@ def edit_post(pid, v): if p.author_id != v.id and not (v.admin_level > 1 and v.admin_level > 2): abort(403) - title = request.values.get("title", "").strip().upper() - body = request.values.get("body", "").strip().upper() + title = request.values.get("title", "").strip() + body = request.values.get("body", "").strip() if len(body) > 10000: return {"error":"Character limit is 10000!"}, 403 @@ -669,7 +669,7 @@ def submit_post(v): if request.content_length > 8 * 1024 * 1024: return "Max file size is 8 MB.", 413 elif request.content_length > 4 * 1024 * 1024: return "Max file size is 4 MB.", 413 - title = request.values.get("title", "").strip()[:500].upper() + title = request.values.get("title", "").strip()[:500] url = request.values.get("url", "").strip() if v.agendaposter and not v.marseyawarded: @@ -678,7 +678,7 @@ def submit_post(v): title = censor_slurs2(title).upper().replace(' ME ', f' @{v.username} ') title_html = filter_emojis_only(title) - body = request.values.get("body", "").strip().upper() + body = request.values.get("body", "").strip() if v.marseyawarded and len(list(re.finditer('>[^<\s+]|[^>\s+]<', title_html))) > 0: return {"error":"You can only type marseys!"}, 40 diff --git a/files/templates/authforms.html b/files/templates/authforms.html index 6190c5820..2ba51a37d 100644 --- a/files/templates/authforms.html +++ b/files/templates/authforms.html @@ -13,11 +13,11 @@ {% if v %} - + {% if v.agendaposter %}{% elif v.css %}{% endif %} {% else %} - + {% endif %} diff --git a/files/templates/default.html b/files/templates/default.html index 52c5041c0..839ffe9c0 100644 --- a/files/templates/default.html +++ b/files/templates/default.html @@ -4,12 +4,12 @@ {% if v %} - + {% if v.agendaposter %}{% elif v.css %}{% endif %} {% else %} - + {% endif %} diff --git a/files/templates/log.html b/files/templates/log.html index 6cc4a3af2..98af14465 100644 --- a/files/templates/log.html +++ b/files/templates/log.html @@ -6,11 +6,11 @@ {% block content %} {% if v %} - + {% if v.agendaposter %}{% elif v.css %}{% endif %} {% else %} - + {% endif %}