diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2019-12-30 08:37:08 +0100 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2019-12-30 08:37:08 +0100 |
| commit | b1c5ad6a6109acfdb82c3705e67d9e4241c088ff (patch) | |
| tree | 1d3424eb56994602a22edd6311eff4a5e311c8da /phpBB/phpbb | |
| parent | 036871cd9535503f1f7456096e6368544bdd8fc5 (diff) | |
| parent | 202478d1088def6e73fd0a9abc0bf951b7b13132 (diff) | |
| download | forums-b1c5ad6a6109acfdb82c3705e67d9e4241c088ff.tar forums-b1c5ad6a6109acfdb82c3705e67d9e4241c088ff.tar.gz forums-b1c5ad6a6109acfdb82c3705e67d9e4241c088ff.tar.bz2 forums-b1c5ad6a6109acfdb82c3705e67d9e4241c088ff.tar.xz forums-b1c5ad6a6109acfdb82c3705e67d9e4241c088ff.zip | |
Merge pull request #5783 from brunoais/ticket/16262
Ticket/16262 compact() calls with undefined variables causing error page
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/search/fulltext_native.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/phpbb/search/fulltext_native.php b/phpBB/phpbb/search/fulltext_native.php index 63ac242ea2..23460d3381 100644 --- a/phpBB/phpbb/search/fulltext_native.php +++ b/phpBB/phpbb/search/fulltext_native.php @@ -788,6 +788,8 @@ class fulltext_native extends \phpbb\search\base $must_not_contain_ids = $this->must_not_contain_ids; $must_contain_ids = $this->must_contain_ids; + $sql_sort_table = $sql_sort_join = $sql_match = $sql_match_where = $sql_sort = ''; + /** * Allow changing the query used for counting for posts using fulltext_native * |
