When I go to modify this portion of my index.php:
PHP Code:
// do light bulb
if ($bbuserinfo['lastvisitdate']=='Never') {
$forum['onoff']='on';
} else {
if (isset($bbforumview[$forum['forumid']]) and $bbforumview[$forum['forumid']]>$bbuserinfo['lastvisit']) {
$userlastvisit=$bbforumview[$forum['forumid']];
} else {
$userlastvisit=$bbuserinfo['lastvisit'];
}
if ($userlastvisit<$forum['lastpost']) {
$forum['onoff']='on';
} else {
$forum['onoff']='off';
}
}
with the appropriate code as posted in the install document my boards white screen when you load them and in my error logs I get a PHP parse error of:
unexpected $ in index.php on line 420
Any ideas? I'm running 2.2.5 and all the other updates for this hack in index.php seem to work fine.
Also I get an undefined function updatelocation{} in search.php when I add the 3rd search type into the file.