mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-23 19:58:51 +00:00
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/13504] Fix invalid variable $user
This commit is contained in:
commit
2535e9da00
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ class fulltext_native extends \phpbb\search\base
|
||||||
// throw an error if we shall not ignore unexistant words
|
// throw an error if we shall not ignore unexistant words
|
||||||
else if (!$ignore_no_id && sizeof($non_common_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);
|
unset($non_common_words);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue