In the xml file for this mod
Find:
PHP Code:
while($hottopic = $db->fetch_array($hottopics))
{
$topicstring.="<a href='showthread.php?t=".$hottopic[threadid]."'>".$hottopic[title]."</a> - ($hottopic[replycount] replies)<br />";
}
REPLACE it with:
PHP Code:
while($hottopic = $db->fetch_array($hottopics))
{
if ($hottopic[replycount] == 1)
{
$topicstring.="<a href='showthread.php?t=".$hottopic[threadid]."'>".$hottopic[title]."</a> - ($hottopic[replycount] reply)<br />";
}
else if ($hottopic[replycount] == 0)
{
$topicstring.="<a href='showthread.php?t=".$hottopic[threadid]."'>".$hottopic[title]."</a> - (No replies)<br />";
}
else
{
$topicstring.="<a href='showthread.php?t=".$hottopic[threadid]."'>".$hottopic[title]."</a> - ($hottopic[replycount] replies)<br />";
}
}
I know it's crude, but it works.