Epi
Active member
I'm trying to create a tab, for tinthe xentag but i can't keep it selected somehow. this is my code
	
	
	
		
whenever i click on the tags tab, the selected tab always goes to 'forums'
any help would be deeply appreciated
				
			
		PHP:
	
	<?php
class Tinhte_XenTag_navtab
{
    public static function listen(array &$extraTabs, $selectedTabId)
    {
        $extraTabs['tags'] = array(
            'title' => new XenForo_Phrase('xentag_navbar_tab'),
            'href'   => XenForo_Link::buildPublicLink('full:tags'),
            'selected' => ($selectedTabId == 'tags'),
            'position'  =>  'middle'
          
        );
    }
}
	whenever i click on the tags tab, the selected tab always goes to 'forums'
any help would be deeply appreciated