diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-01-12 00:46:22 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-01-19 21:42:22 +0100 |
commit | 7e8bb68999e6d89f84767ee03cb5ff99c8212c15 (patch) | |
tree | ab72f42cf9dc934b7027195b8fa6bcbf2294e078 | |
parent | ff39ffacf66c40b88c82ed1fff65427c5716e43a (diff) | |
download | forums-7e8bb68999e6d89f84767ee03cb5ff99c8212c15.tar forums-7e8bb68999e6d89f84767ee03cb5ff99c8212c15.tar.gz forums-7e8bb68999e6d89f84767ee03cb5ff99c8212c15.tar.bz2 forums-7e8bb68999e6d89f84767ee03cb5ff99c8212c15.tar.xz forums-7e8bb68999e6d89f84767ee03cb5ff99c8212c15.zip |
[ticket/13504] Fix invalid variable $user
PHPBB3-13504
-rw-r--r-- | phpBB/phpbb/search/fulltext_native.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/search/fulltext_native.php b/phpBB/phpbb/search/fulltext_native.php index 48b0f077c7..8865d37712 100644 --- a/phpBB/phpbb/search/fulltext_native.php +++ b/phpBB/phpbb/search/fulltext_native.php @@ -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); } |