Thanks! The error was in include/diff/diff.php, which has been corrected in the 3.3.12 release; here's the change:ssl wrote: ↑Sun Jun 02, 2024 6:23 am Have a look here: https://www.phpbb.com/support/docs/en/3 ... meoutquot/
FIND:
Code: Select all
// We can simplify one case where the array is usually supposed to be empty...
if (count($orig) == 1 && trim($orig[0]) === '') $orig = array();
if (count($final) == 1 && trim($final[0]) === '') $final = array();
Code: Select all
// We can simplify one case where the array is usually supposed to be empty...
if (is_array($orig) && count($orig) == 1 && trim($orig[0]) === '')
{
$orig = array();
}
if (is_array($final) && count($final) == 1 && trim($final[0]) === '')
{
$final = array();
}