open newreply.php find this:
PHP Code:
// check for subject and message
$message=trim($message);
if ($message=="") {
eval("standarderror(\"".gettemplate("error_nosubject")."\");");
exit;
}
after that add:
PHP Code:
if (in_array($threadinfo['forumid'], array(13, 17, 19, 20, 26, 27, 33, 34, 44, 45, 51, 52, 58, 59))) {
$getfirst=$DB_site->query_first("SELECT postid,post.userid,dateline,user.username FROM post LEFT JOIN user USING(userid) WHERE threadid='$threadid' ORDER BY dateline LIMIT 1");
if(!strstr($message,$getfirst['username'])) {
eval("standarderror(\"".gettemplate("error_nofirstusername")."\");");
}
}
then create a template error_nofirstusername and write your message there