matd62,
see if this will work....
FIND in functions/forumdisplay.php:
Code:
// format thread preview if there is one
if ($ignore["$thread[postuserid]"])
{
$thread['preview'] = '';
}
else if (isset($thread['preview']) AND $vboptions['threadpreview'] > 0)
{
$thread['preview'] = strip_quotes($thread['preview']);
$thread['preview'] = htmlspecialchars_uni(fetch_trimmed_title(strip_bbcode($thread['preview'], false, true), $vboptions['threadpreview']));
}
REPLACE IT WITH:
Code:
// ================================================= \\
// == [ ALLOW GROUP TO READ TITLE / NOT CONTENT - GTP BEGIN ]
$forumperms = fetch_permissions($foruminfo['forumid']);
// format thread preview if there is one
if ($ignore["$thread[postuserid]"] OR !($forumperms & GTPCANREADCONTENT))
{
$thread['preview'] = '';
}
else if (isset($thread['preview']) AND $vboptions['threadpreview'] > 0)
{
$thread['preview'] = strip_quotes($thread['preview']);
$thread['preview'] = htmlspecialchars_uni(fetch_trimmed_title(strip_bbcode($thread['preview'], false, true), $vboptions['threadpreview']));
}
// == [ 00-00-2004 - GTP END ]
// ================================================= \\
I don't have this hack installed on my test site so let me know if the above works. thanks