Quote:
Originally Posted by RapCheck
I did the charater limit hack for the news, which works, but how would I change that hack to show the whole post for a sticky thread?
|
Instead of replacing it with the code above use:
PHP Code:
if ($news['sticky']) {
$news['pagetext'] = fetch_censored_text(parse_bbcode($news['pagetext'], $news['forumid'], 1));
} else {
$news['pagetext'] = fetch_censored_text(parse_bbcode(strip_bbcode(fetch_trimmed_title($news['pagetext'], 394), true, true), $news['forumid'], 1));
}
Again replacing 394 with the number of characters to show for non-sticky news.