]1. Open newreply.php, find:
PHP Code:
if (strlen($message)>$postmaxchars and $postmaxchars!=0) {
eval("standarderror(\"".gettemplate("error_toolong")."\");");
}
Below add:
PHP Code:
$postminchars = 10;
if (strlen($message) < $postminchars) {
eval("standarderror(\"".gettemplate("error_tooshort")."\");");
}
2. Edit the variable $postminchars
3. Create a template called error_tooshort and insert a error message