There should be 3.
PHP Code:
#Find:
forumhome_moderator
#Replace with:
forumhome_moderator,forumdisplay_sepsai
#Find:
eval("\$announcement = \"".gettemplate('forumdisplay_announcement')."\";");
#Under, add:
eval("\$sepsai = \"".gettemplate('forumdisplay_sepsai')."\";");
#Find:
if ($thread[sticky] == 1) {
$thread[typeprefix]=$stickythreadprefix.$thread[typeprefix];
}
#Under, add:
if(!$addedRow and $stickyids and $thread[sticky] == 0 and $addedRow = true){
eval("\$sepsai = \"".gettemplate('forumdisplay_sepsai')."\";");
} else {
$sepsai = '';
}
Edit: Think I found the problem (curious how it worked on my localboard) working on a new fix now.