Quote:
Originally Posted by fxdigi-cash
where did you add this line?? to the product as additional code? or where?
|
In the Hook Location : forumhome_start -> add that line in the while loop as shown below:
PHP Code:
while ($lpicture = $db->fetch_array($lpictures))
{
$lpicture['musername'] = fetch_musername($lpicture);
$lpicture['title'] = trim(strip_quotes($lpicture['title']));
$lpicture['mpicname'] = trim(strip_quotes($lpicture['caption']));
// eval('$resimler .= "' . fetch_template('afm_picture') . '";');
$templater_x1 = vB_Template::create('newalbum_picture');
$templater_x1->register('lpicture',$lpicture);
$resimler .= $templater_x1->render();
}