buro9: Quite apparently in the installer, although my installed version seems to already have it. The product's been updated, thank you for catching that
drex: The plugins at threadbit_display and search_results_threadbit have been removed. They've been replaced with the following file edits.
In
search.php
Find:
PHP Code:
// show results as posts
if ($search['showposts'])
{
foreach ($itemids AS $post)
{
Add BELOW:
PHP Code:
// M/DD/YY PRIVATE THREADS PORT
include_once('./includes/functions_privatethread.php');
if (private_thread_not_allowed($post))
{
continue;
}
// END PRIVATE THREADS PORT
In
forumdisplay.php
Find:
PHP Code:
while ($thread = $db->fetch_array($threads))
{ // AND $counter++ < $perpage)
Add BELOW:
PHP Code:
// M/DD/YY PRIVATE THREADS PORT
include_once('./includes/functions_privatethread.php');
if (private_thread_not_allowed($thread))
{
continue;
}
// END PRIVATE THREADS PORT