this is the plugin gXBL: Postbit Stats Display code
I am not sure what i did to this mod .
its been a long while...
check your plug in to see
Code:
if(!defined('GXBL_FUNC'))
include "./includes/functions_gxboxlive.php";
if(function_exists('gxbl_has_access') && gxbl_has_access() && $post[gxblrank] && ( $this->registry->options['gxbl_forumids'] == '0' || in_array($forum['forumid'], explode(',',$this->registry->options['gxbl_forumids']))) )
{
$show['gxblrank'] = true;
if(!$post[gxblscore])
$show['gxblrank'] = false;
else
{
$post['url_gxblgamertag'] = urlencode($post['gxblgamertag']);
$post['gxblranksuff'] = gxbl_suffix($post['gxblrank']);
$templater = vB_Template::create('gxbl_postbit');
$templater->register('post', $post);
$template_hook['postbit_userinfo_right_after_posts'] .= $templater->render();
}
}
else
{
$show['gxblrank'] = false;
$post['gxblrank'] = false;
$page = false;
}