VB.org Code Display Error content

Rainerest

New Member
Can any one write me the content of this topic :
Need help with Arcade's Navbar.. or whatever it's called - vBulletin.org Forum

and put the content here, because it is enrypted like this.. and I cant see the text file..
After the line" I found this in /arcade/functions/functions.php:" part

Codedisplayerror: (Update license status) You cannot view code until you prove your license status

And put all of this immediately afterwards:

Codedisplayerror: (Update license status) You cannot view code until you prove your license status

thanks in advance
 
PHP:
eval('$footer="' . fetch_template('footer') . '";');

Immediately after:

PHP:
  if ($vbulletin->options['vmoods_active'] && $vbulletin->userinfo['userid'] > 0 && !in_array($vbulletin->userinfo['usergroupid'], explode(",", $vbulletin->options['vmoods_usergroups'])))
{
    $vmoods_list = explode("\n", $vbulletin->options['vmoods_list']);
    $vmoods_path = $vbulletin->options['vmoods_images_path'];    
    foreach ($vmoods_list as $vmood)
    {
        $vmood = trim($vmood);
        $vmood_id = ($vbulletin->userinfo['vmood'] == $vmood) ? 'mine' : $vmood;
        
        if ($vbulletin->options['vmoods_li_option'] == 'text'){
            eval('$vmoods_li .= "' . fetch_template('vmoods_li_text') . '";');
        } else        
        if ($vbulletin->options['vmoods_li_option'] == 'images'){
            eval('$vmoods_li .= "' . fetch_template('vmoods_li') . '";');
        }
    }
    
    eval('$vmoods_form = "' . fetch_template('vmoods_form') . '";');
 
Back
Top