(Resolvido)[Gesior] Account Status

Olá, gostaria de saber como coloco para o status do player informar se o mesmo é o ou não premium account, eu estou usando o gesior do Matheus e o mesmo é configurado para "vip system"... accountmanagement.php Obrigado, REP+
Nessa parte:  $account_vip = $account_logged->getPlayerVip_Time() ? 'VIP' : 'Free Account'; if ($account_vip == "VIP") $account_vip_status = "green"; else $account_vip_status = "red"; Muda para:  $account_vip = $account_logged->isPremium() ? 'Premium Account' : 'Free Account'; $account_vip_status = $account_logged->isPremium() ? 'green' : 'red'; E onde esta:  if ($account_vip == "VIP") $main_content .='<small>Your premium time expired at '.date("M j Y, H:i:s", $account_l