From d633212b4cf3d54ecbc0f6bcf1242b09911e17fa Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 24 Dec 2023 22:53:59 +0200 Subject: [PATCH] increase css limit --- files/helpers/config/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/config/const.py b/files/helpers/config/const.py index 6423acf4b..215c7ef12 100644 --- a/files/helpers/config/const.py +++ b/files/helpers/config/const.py @@ -505,7 +505,7 @@ POST_BODY_HTML_LENGTH_LIMIT = 200000 # do not make larger than 200000 without al COMMENT_BODY_LENGTH_LIMIT = 10000 # do not make larger than 10000 characters without altering the table COMMENT_BODY_HTML_LENGTH_LIMIT = 40000 # do not make larger than 20000 characters without altering the table -CSS_LENGTH_LIMIT = 10000 # do not make larger than 20000 characters without altering the table +CSS_LENGTH_LIMIT = 20000 # do not make larger than 20000 characters without altering the table COMMENT_MAX_DEPTH = 200 TRANSFER_MESSAGE_LENGTH_LIMIT = 200 # do not make larger than 10000 characters (comment limit) without altering the table MIN_REPOST_CHECK_URL_LENGTH = 9 # also change the constant in checkRepost() of submit.js