From 0e1319437242ee82ab9860f31932040b7ff9373e Mon Sep 17 00:00:00 2001
From: srosse <none@none>
Date: Tue, 17 Jan 2012 12:32:50 +0100
Subject: [PATCH] OO-71: set the max limit of forum post to 32'000

---
 src/main/java/org/olat/modules/fo/MessageEditController.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/olat/modules/fo/MessageEditController.java b/src/main/java/org/olat/modules/fo/MessageEditController.java
index 8cfeb996e32..63ac0f755f3 100644
--- a/src/main/java/org/olat/modules/fo/MessageEditController.java
+++ b/src/main/java/org/olat/modules/fo/MessageEditController.java
@@ -76,7 +76,7 @@ public class MessageEditController extends FormBasicController {
 	protected static final String EDITMODE_REPLYMSG = "replymsg";
 	private static final String STICKY_SET_IDENTIFIER = "stickyset";
 	private static final String CMD_DELETE_ATTACHMENT = "delete.attachment.";
-	protected static final Integer MAX_BODY_LENGTH = 4000;
+	protected static final Integer MAX_BODY_LENGTH = 32000;
 
 	// see OLAT-4182/OLAT-4219 and OLAT-4259
 	// the filtering of .nfs is sort of temporary until we make sure that we no longer reference
-- 
GitLab