论坛字符允许扩大为20000个字符,超过两万个字符不允许提交

This commit is contained in:
lizanle 2015-11-09 11:24:20 +08:00
parent 1edd87f9e0
commit 2d321d2dbc
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@
$("#error").html("主题 过长(最长为 50 个字符)").show();
return false;
}
if(memo_content.html().trim().length > 20000){
if(memo_content.html().length > 20000){
$("#error").html("内容 过长(最长为 20000 个字符)").show();
return false;
}