I just upgraded my forum to 3.6.7 and my vB Advanced to 3.0. I have no problems with the forum, but the vBa page vba_cmps_include_bottom.php file is different than the old one, it no longer has the
Quote:
|
eval('print_output("' . fetch_template('adv_portal') . '");');
|
code, so I have no idea where to install the
Quote:
// begin vBPicGallery extension
$result_latest = $db->query_read("SELECT vbpicgalleryid,id,u_date FROM " . TABLE_PREFIX . "vbpicgallery_images ORDER BY RAND() LIMIT 5 ");
while ($latest = $db->fetch_Array($result_latest))
{
eval('$latestbits .= "' . fetch_template('vbpicgallery_latestbits') . '";');
}
$db->free_result($result_latest);
// end vBPicGallery extension
|
code to get the gallery up on vBa. Any suggestions?