aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-01-12 00:46:22 +0100
committerJoas Schilling <nickvergessen@gmx.de>2015-01-19 21:42:22 +0100
commit7e8bb68999e6d89f84767ee03cb5ff99c8212c15 (patch)
treeab72f42cf9dc934b7027195b8fa6bcbf2294e078
parentff39ffacf66c40b88c82ed1fff65427c5716e43a (diff)
downloadforums-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.php2
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);
}