edit newthread.php, find:
PHP Code:
if (strlen($message)>$postmaxchars and $postmaxchars!=0) {
Before that add:
PHP Code:
if ($foruminfo[forumid]==X) {$postmaxchars=Y;}
Replace X with your forumid of the forum with more chars allowed and Replace Y with the new allowed chars of that forum.
Add the same code right before
PHP Code:
// ############################### start post thread ###############################
too..
that should do the trick..
I assume that you only want to allow longer new threads in that special forum but not replies so I didnt give you the newreply.php hack..