From 9eaab55daba46df93a3a15960b9f9ec1f6f14b9f Mon Sep 17 00:00:00 2001 From: rr- Date: Mon, 29 Feb 2016 00:58:39 +0100 Subject: [PATCH] Increased maximum comment length to 5000 chars --- src/Services/CommentService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/CommentService.php b/src/Services/CommentService.php index 75240f9b..10285d11 100644 --- a/src/Services/CommentService.php +++ b/src/Services/CommentService.php @@ -101,7 +101,7 @@ class CommentService private function updateCommentText(Comment $comment, $text) { - $this->validator->validateLength($text, 5, 2000, 'Comment text'); + $this->validator->validateLength($text, 5, 5000, 'Comment text'); $comment->setText($text); } }