Open newreply.php and find:
PHP Code:
if ($foruminfo[allowicons]) {
$posticons=chooseicons($iconid);
} else {
$posticons="";
}
if (!isset($parseurl)) {
$parseurlchecked="CHECKED";
}
under it ADD:
PHP Code:
$forumidcheckss = $DB_site->query_first("SELECT forumid FROM thread WHERE threadid='$threadid'");
if ($forumidcheckss[forumid]==XX){
$replypagetexxxt="Text";
}else{
$replypagetexxxt="";
}
Changce the XX to the forumid
Open the template newreply, its under the new postings template and find
REPLACE with
Code:
$message$replypagetexxxt
That should do it