Merge "This patch reduces the edit summary length to 500 characters"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Tue, 27 Mar 2018 22:38:24 +0000 (22:38 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Tue, 27 Mar 2018 22:38:24 +0000 (22:38 +0000)
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.