PDA

View Full Version : New Thread Tag..


Jadelit
04-08-2002, 08:23 AM
Ok I have a forum where some of my team posts regularly, like News: Please Read or Infame Sig..

Instead of me having to go through then and re naming them to "[JL] - *(name of Thread)*" Is there a way to just have it automaticly do it..? only in spacific forums..??

Logician
04-10-2002, 10:12 AM
Not tested but should work:

In newthread.php, find
-- cut --
$permissions=getpermissions($forumid);
if (!$permissions[canview] or !$permissions[canpostnew]) {
show_nopermission();
}
-- cut --
after that add

-- cut--
if ($foruminfo[forumid]==6 OR $foruminfo[forumid]==7)
{
$subject="[".$bbuserinfo[userid]."] - *".$subject."*";
}
-- cut---

Replace 6 and 7 with forumids..

Enjoy..

Logician