Ok, I corrected a minor bug that occurs when you have a new forum published with no threads on it.
Fix example (for the time it will stay empty):
http://www.teckwizards.com/forumdisplay/f-38.html
FILE: forumdisplay.txt
FIND:
Code:
if ( $limitlower <= 0 )
{
$limitlower = 1;
}
REPLACE WITH:
Code:
if ( $limitlower <= 0 )
{
$limitlower = 1;
}
if ( empty( $totalthreads ) )
{
$limitlower = 0;
$showthreadbits = 'No threads available. Please try a different location.';
}
That will take care of the problem. I updated the .zip file.