diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2012-02-25 19:46:17 +0100 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2012-02-25 19:46:17 +0100 |
| commit | 825aef72e89cb1150945950de93fa5cc0d9acbc1 (patch) | |
| tree | dcade4bcdc21cf983b851a2697e0f54f768f5737 /phpBB/includes/search/fulltext_native.php | |
| parent | 8cb95b3b843fa02f9e358f0571bf795c40e13775 (diff) | |
| parent | ef154b78a169402e7f968cd2189b69b041a73543 (diff) | |
| download | forums-825aef72e89cb1150945950de93fa5cc0d9acbc1.tar forums-825aef72e89cb1150945950de93fa5cc0d9acbc1.tar.gz forums-825aef72e89cb1150945950de93fa5cc0d9acbc1.tar.bz2 forums-825aef72e89cb1150945950de93fa5cc0d9acbc1.tar.xz forums-825aef72e89cb1150945950de93fa5cc0d9acbc1.zip | |
Merge remote-tracking branch 'nickvergessen/ticket/10630' into develop-olympus
* nickvergessen/ticket/10630:
[ticket/10630] Use sql_like_expression() method instead of hardcoded LIKE '%x%'
[ticket/10630] Perform array_unique on authors array before creating the query
Diffstat (limited to 'phpBB/includes/search/fulltext_native.php')
| -rw-r--r-- | phpBB/includes/search/fulltext_native.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index 727e3aaffb..b63205fd76 100644 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -1334,7 +1334,7 @@ class fulltext_native extends search_backend $db->sql_query($sql); } - $this->destroy_cache(array_unique($word_texts), $author_ids); + $this->destroy_cache(array_unique($word_texts), array_unique($author_ids)); } /** |
