mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 08:17:47 +02:00
Merge pull request #3308 from nickvergessen/ticket/13504
[ticket/13504] Fix invalid variable $user * nickvergessen/ticket/13504: [ticket/13504] Fix invalid variable $user
This commit is contained in:
@@ -434,7 +434,7 @@ class fulltext_native extends \phpbb\search\base
|
||||
// throw an error if we shall not ignore unexistant words
|
||||
else if (!$ignore_no_id && sizeof($non_common_words))
|
||||
{
|
||||
trigger_error(sprintf($user->lang['WORDS_IN_NO_POST'], implode($user->lang['COMMA_SEPARATOR'], $non_common_words)));
|
||||
trigger_error(sprintf($this->user->lang['WORDS_IN_NO_POST'], implode($this->user->lang['COMMA_SEPARATOR'], $non_common_words)));
|
||||
}
|
||||
unset($non_common_words);
|
||||
}
|
||||
|
Reference in New Issue
Block a user