mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/16288] PHP 8 compatibility
PHPBB3-16288
This commit is contained in:
@@ -405,7 +405,7 @@ class fulltext_native extends \phpbb\search\base
|
||||
}
|
||||
|
||||
// a group of words of which at least one word should be in every resulting post
|
||||
if ($word[0] == '(')
|
||||
if (isset($word[0]) && $word[0] == '(')
|
||||
{
|
||||
$word = array_unique(explode('|', substr($word, 1, -1)));
|
||||
}
|
||||
|
Reference in New Issue
Block a user