Notified Posts italic
1.0 - SP1
This mod makes the title of a thread in the message index italic if you are being notified of replies to that thread
Altan (converted to SP1 by BHRA Webmaster)
http://www.dog-tracker.com/
Sources/MessageIndex.pl
# Censor the subject of the thread.
if(-e "$datadir/$mnum.mail") {
fopen(FILE, "$datadir/$mnum.mail");
@starter = ;
fclose(FILE);
foreach $alx (@starter) {
$alx =~ s/[\n\r]//g;
if($settings[2] eq "$alx") {$msub = qq~$msub~;}
}
}