Okay thank you for reporting this. I had first seen this on your forum and thought maybe you configured it like this on purpose. This could be happening because you may have thread previews disabled.
In news.php find:
PHP Code:
PHP Code:
// disable thread preview if we can't view threads
if (!($forumperms & $vbulletin->bf_ugp_forumpermissions['canviewthreads']))
{
$vbulletin->options['threadpreview'] = 0;
}
Replace with:
PHP Code:
PHP Code:
// disable thread preview if we can't view threads
if (!($forumperms & $vbulletin->bf_ugp_forumpermissions['canviewthreads']))
{
$vbulletin->options['threadpreview'] = 0;
}
else
{
$vbulletin->options['threadpreview'] = 1;
}
In CES News, the threadpreview setting is treated as a 0 = off, 1 = on value.
Please let me know if this fixes the problem. If it does, I can upload a new version with a few optimizations.