From acc7ab62a50c038438d543b80c65d55a99055cfe Mon Sep 17 00:00:00 2001 From: Niharika Kohli Date: Wed, 21 Mar 2018 16:28:11 -0700 Subject: [PATCH] This patch reduces the edit summary length to 500 characters Per discussion on ticket. Bug:T188798 Change-Id: I621a98f4befd70d84f53e3c877314b64f749001c --- includes/CommentStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/CommentStore.php b/includes/CommentStore.php index 8447b2c797..55f6857267 100644 --- a/includes/CommentStore.php +++ b/includes/CommentStore.php @@ -34,7 +34,7 @@ class CommentStore { * Maximum length of a comment in UTF-8 characters. Longer comments will be truncated. * @note This must be at least 255 and not greater than floor( MAX_COMMENT_LENGTH / 4 ). */ - const COMMENT_CHARACTER_LIMIT = 1000; + const COMMENT_CHARACTER_LIMIT = 500; /** * Maximum length of a comment in bytes. Longer comments will be truncated. -- 2.20.1