From: Niharika Kohli Date: Wed, 21 Mar 2018 23:28:11 +0000 (-0700) Subject: This patch reduces the edit summary length to 500 characters X-Git-Tag: 1.31.0-rc.0~263^2 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28?a=commitdiff_plain;h=acc7ab62a50c038438d543b80c65d55a99055cfe;p=lhc%2Fweb%2Fwiklou.git This patch reduces the edit summary length to 500 characters Per discussion on ticket. Bug:T188798 Change-Id: I621a98f4befd70d84f53e3c877314b64f749001c --- 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.