I've removed the limit, line and it seemingly works..but I'm sure I need it. Now I have an issue with the arcitles icon's not showing up, and I assume that is because its calling a template that doesn't exist:
Code:
if ($articon) { eval('$articonimg = "' . fetch_template('vbArticles_articonimg') . '";'); }
else { $articonimg = ''; }
vbArticles_articonimg doesn't exist. What if anything should that be changed to?
BTW, the limit line was
Code:
LIMIT ".$vboptions['numfeaturedarticlehome']."
Any ideas?
Btw, yes I did update the options. I have set to 4 featured articles on forum home
In an update, I created a test.php including:
Code:
<?
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once('./includes/functions_bigthree.php');
require_once('./includes/functions_forumlist.php');
echo "Hello World";
echo $vboptions['numfeaturedarticlehome'] ;
?>
And all I get is Hello World