
I'm not an expert in phpbb, but i debugged my site and observed that the file ./sudoku/includes/functions_sudoku_stats creates an php Notice on line 331. the vaiable $sudoku_general is not defined and if you defined as an array, then the index 'cache_enabled' does not exist. I used the following definition to avoid the php Notice with debugger:
- Code: Select all
$sudoku_general = array("cache_enable" => '');
if($sudoku_general['cache_enable'])
{
$sudoku->write_cache('sudoku_today', $row );
}
$db->sql_freeresult($result);
}
The first line is the definition. The notice disappeared now, but i want to ask if this will affect in any way the Sudoku stats.
Thanks a lot.