Im not sure if this is a bug, or my stupidity, so, im posting here first.
I am working on an intergrated website solution using SMF using SSI.php and the related php calls (including template functions from the theme(s)) I edited the menu items a bit, chaing home to forums (as well as adding a new constant for it), and adding a new "home" menu item as shown below:
$buttons = array(
'home' => array(
'title' => $txt['home'],
'href' => 'http://www.mysite.us',
'show' => true,
'sub_buttons' => array(
),
),
'forum' => array(
'title' => $txt['forum'],
'href' => $scripturl,
'show' => true,
'sub_buttons' => array(
),
),
I then changed $current_action = 'home'; to $current_action = 'forum';
the menu works exactly as you would expect, except that it seems that the software is not detecting that "home" is the active page the user is visiting, as in, when you hover over the home link, you will get the hover color, but, once you click on it, it shows the "forum" tab as the active page. i have tested this on several 2.0b3 compatable themes (overview, blackrain... ect.)
you can see what im talking about at hxxp:www.thegodsofwar.us [nonactive]
if anyone could shed some insight that would be great, and also, if this has been posted before, im sorry. i searched, but didnt find anything to this problem.