I've got the same threads showing up in my center column and "latest threads." Any idea on how to stop this? Right now I've got forums 1 and 3 for the center news area, and I'm trying to exclude forums 1 and 3 from the latest threads but it isn't working.
Here's where you'll see the duplicate entries:
http://www.numbmonkey.com/index.php
I tried the fix below and it gave me a parse error.
Any ideas?
Thanks.
Quote:
Originally Posted by NTLDR
Someone else reported this but I can't find it now. Anyway its fixed, in vbindex.php find:
PHP Code:
$limitfids = array(explode(',', $vbindex['limitfids']));
Replace with:
PHP Code:
$limitfids = array();
$limitfids = explode(',', $vbindex['limitfids']);
And it should work as expected 
|