umm you would have to set an if for that forum id for example
PHP Code:
If ($forumid == 23){
$minchars = 15;
if (strlen($message) < $minchars and $minchars !=0) {
eval("standarderror(\"".gettemplate("error_tooshort")."\");");
}
}
that would set the minimum of 15 chars for forum number 23 doing this you can set minimums for all of the fourms with different amounts just copy paste that for different forums just changeing the numbers. you can also combind forums to save coding like this:
PHP Code:
If ($forumid == 23 || $forumid == 10){
$minchars = 15;
if (strlen($message) < $minchars and $minchars !=0) {
eval("standarderror(\"".gettemplate("error_tooshort")."\");");
}
}
that makes it so both 23 and 10 have a 15 chars minimum.