Quote:
Originally Posted by BamaStangGuy
Code:
case '/':
case '':
case 'cron.php': // this shouldn't occur but just to be sane
case $vbulletin->options['forumhome'] . '.php':
if ($values['page'] == 'fordtrademark')
{
$userinfo['activity'] = 'fordtrademark';
}
if ($values['page'] == 'history')
{
$userinfo['activity'] = 'history';
}
if ($values['page'] == '2005history')
{
$userinfo['activity'] = '2005intro';
}
else
{
$userinfo['activity'] = 'index';
}
break;
No one has any suggestions on why it is not working?????
|
It doesn't work because the logic is screwed, the final bit in bold basically says if the page is '2005history' then set the activity to '2005intro'
otherwise, set it to 'index' - irrespective of anything else before it.