[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions_content.php on line 413: Trying to access array offset on value of type bool
There is atleast one local language character which is causing this error.
lines 412 and 413 of /includes/functions_content.php
Code: Select all
{
preg_match_all('/[a-zA-Z0-9][^a-zA-Z0-9]/u', $fragment, $matches, PREG_OFFSET_CAPTURE);
$fragment_end = end($matches[0])[1]; // last valid alphanumeric character
}
It shows all the posts of a user but with above error. If I remove that particular character, error disappears.