I fixed it in a few places where I felt it was needed mostly.
- To display in the search results
in /search.php find
Code:
// get info from thread
$thread = process_thread_array($thread, $lastread["$thread[forumid]"]);
and replace with
Code:
// get info from thread
require_once('./includes/functions_bbcodeparse.php');
$thread['threadtitle'] = parse_bbcode($thread['threadtitle']);
$thread = process_thread_array($thread, $lastread["$thread[forumid]"]);
- To display on the top navigating bit of the thread
in /showthread.php find
Code:
$navbits[''] = $thread['title'];
and add above it
Code:
require_once('./includes/functions_bbcodeparse.php');
$thread['title'] = parse_bbcode($thread['title']);
I couldn't figure out how to add it to the post titles :devious: This worked fine for the others though. Not bad for 1st timer
note: this would allow nonsticky's to show in the search results and the navbit but not in the forum dislpay