Quote:
Originally posted by saab340
My problems are [] listed right before each post on the topic, and when replied... they will show up on a different post.
some Re: posts also show as a different topic.
|
That shouldn't be happening. Is the prefix column in the thread table set to default to NULL? If not, change it to do that.
Otherwise, if all else fails, we can hardcode it to not use my undocumented feature for you:
Change:
Code:
if ($prefix[$newthread[forumid]] and !$isreply){
$cat = "[".$prefix[$newthread[forumid]]."] ";
} elseif ($isreply and $newthread[prefix]) {
$cat = "Re: [".$newthread[prefix]."] ";
} elseif ($isreply){
$cat = "Re: ";
} else { $cat = ''; }
Into this:
Code:
if ($isreply){
$cat = "Re: ";
} else { $cat = ''; }