This commit is contained in:
wangjinlei
2024-11-01 15:40:40 +08:00
parent b1446dc1e6
commit ef91e9de61
5 changed files with 41 additions and 4 deletions

View File

@@ -843,7 +843,7 @@ class Reviewer extends Base
return jsonError("We encourage you to enrich your comment further to help improve the peer paper (at least 100 words).");
}
}else{
if(mb_strlen($content, 'UTF8')<90){
if(mb_strlen($content, 'UTF8')<100){
return jsonError("We encourage you to enrich your comment further to help improve the peer paper (at least 70 words).");
}
}
@@ -855,7 +855,7 @@ class Reviewer extends Base
}
}else{
$carray = explode(" ", $content);
if(count($carray)<90){
if(count($carray)<100){
return jsonError("We encourage you to enrich your comment further to help improve the peer paper (at least 70 words).");
}
}