|
Fix to submit to FireBoard team:
line 126:
function fblatest_loadposts( $num_posts, $only_categories, $child_categories, $within_thread, $show_public, $show_registered, $show_special )
{
global $database, $my;
$fbcookie = $_COOKIE['fboard_settings'];
$prevvisit = 0;
$readtopics = null;
Line 130:
$fbcookie = $_COOKIE['fboard_settings'];
should be:
$fbcookie = ( isset( $_COOKIE['fboard_settings'] ) ? $_COOKIE['fboard_settings'] : array() );
I fixed it on your site, but please post to fireBoard team the fix with my best regards, Thanks, Beat
|