This patch reduces the edit summary length to 500 characters
authorNiharika Kohli <niharikakohli29@gmail.com>
Wed, 21 Mar 2018 23:28:11 +0000 (16:28 -0700)
committerNiharika Kohli <niharikakohli29@gmail.com>
Wed, 21 Mar 2018 23:28:11 +0000 (16:28 -0700)
Per discussion on ticket.

Bug:T188798
Change-Id: I621a98f4befd70d84f53e3c877314b64f749001c

includes/CommentStore.php

index 8447b2c..55f6857 100644 (file)
@@ -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.