as templates no longer get output using eval
i tried to change it but seems not working.
can anyone help me with this code?
PHP Code:
if ($vbulletin->options['card_onoff'] AND THIS_SCRIPT != 'private' AND THIS_SCRIPT != 'login')
{
if( $vbulletin->userinfo['usergroupid']!=8 OR $vbulletin->userinfo['usergroupid']!=3 OR $vbulletin->userinfo['usergroupid']!=1 )
{
$istherewinner=mysql_query("SELECT `value` FROM `setting` WHERE `varname` = 'card_carintwin' LIMIT 1");
while ($yeswinner = $db->fetch_array($istherewinner))
{
$bigwinner =$yeswinner[value];
}
if($bigwinner)
{
eval('$card_win_index = "' . fetch_template('card_win_index') . '";');
$ad_location['global_below_navbar'] .= $card_win_index;
}
else
{
eval('$card_index = "' . fetch_template('index_card') . '";');
$ad_location['global_below_navbar'] .= $card_index;
}
}
}