aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/search
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '3.2.x' into 3.3.xMarc Alexander2019-12-301-0/+1
|\
| * Merge pull request #5792 from KYPREO/ticket/16269Marc Alexander2019-12-301-0/+1
| |\ | | | | | | | | | [ticket/16269] Strip HTML markup from Sphinx search index
| | * [ticket/16269] Strip HTML markup from Sphinx search indexKYPREO2019-12-271-0/+1
| | | | | | | | | | | | PHPBB3-16269
* | | Merge pull request #5783 from brunoais/ticket/16262Marc Alexander2019-12-301-0/+2
|\ \ \ | | | | | | | | | | | | Ticket/16262 compact() calls with undefined variables causing error page
| * | | [ticket/16262] Add unset variables to fulltext_native compactbrunoais2019-12-231-0/+2
| | | | | | | | | | | | | | | | PHPBB3-16262
* | | | [ticket/16271] Fix invalid docblocksMarc Alexander2019-12-272-1/+7
| | | | | | | | | | | | | | | | PHPBB3-16271
* | | | Merge branch '3.2.x' into 3.3.xMarc Alexander2019-12-241-2/+2
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | [ticket/15902] Out of range error with Sphinx search3D-I2019-12-241-1/+1
| | | | | | | | | | | | | | | | | | Add missing modification. PHPBB3-15902
| * | [ticket/15902] Out of range error with Sphinx search3D-I2019-12-231-1/+1
| |/ | | | | | | | | | | | | | | The reporter he's waiting this fix to be in the core. I created this PR based on trusting his report. I can't test it. PHPBB3-15902
* | [ticket/16051] Remove mysql driver as it's no longer supported in PHP >= 7.0Marc Alexander2019-10-063-22/+5
| | | | | | | | PHPBB3-16051
* | Merge branch '3.2.x' into 3.3.xMarc Alexander2019-07-271-3/+11
|\ \ | |/
| * [ticket/16096] Use InnoDB fulltext limits for InnoDB tablesCasey Peel2019-07-081-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | The max and min search length for the MySQL database vary based on the engine for the underlying table. For MyISAM tables, the variables are ft_max_word_len and ft_min_word_len, but for InnoDB tables the variables are innodb_ft_max_token_size and innodb_ft_min_token_size. Take the posts table type into account when setting the max and min search length. PHPBB3-16096
* | [ticket/15424] Multiple typo fixes in docs & commentsluzpaz2019-05-084-5/+5
|/ | | | | | Fixed typos in some docs, guidelines, some non-user-facing files. PHPBB3-15424
* [ticket/security/235] Only allow one wildcard in the search query to limit ↵Derky2019-04-261-0/+9
| | | | | | the database load SECURITY-235
* [ticket/security/235] Use whitespace instead of word boundary regex to ↵Derky2019-04-261-1/+1
| | | | | | | remove wildcards This fixes removing the wildcard in the following search query: *.test SECURITY-235
* [ticket/security/235] Remove non trailing wildcards from search keywordsDerky2019-04-251-0/+5
| | | | | Database indexes are only used if wildcards are used at the end. SECURITY-235
* [ticket/security/235] Apply wildcard char count patchDerky2019-03-141-9/+15
| | | | SECURITY-235
* Merge pull request #5355 from marc1706/ticket/15770Marc Alexander2018-10-081-1/+1
|\ | | | | | | [ticket/15770] Make sure sphinx limits are cast to int
| * [ticket/15770] Make sure sphinx limits are cast to intMarc Alexander2018-09-141-1/+1
| | | | | | | | PHPBB3-15770
* | [ticket/13128] Remove deprecated Sphinx optionsZoddo2018-04-231-4/+0
|/ | | | | | | | | | | These configuration options are deprecated: * sql_query_info (since sphinx 2.2.2; used only by the "search" command which was removed; wiki need to be updated accordingly) * max_matches (since sphinx 2.2.3; should be set in the sphinx query) * charset_type (since sphinx 2.2.2; sphinx now supports only utf-8) * compat_sphinxql_magics (since sphinx 2.2.1) PHPBB3-13128
* Merge pull request #5131 from kasimi/ticket/15561Marc Alexander2018-02-223-17/+129
|\ | | | | | | [ticket/15561] Add events for adding columns to search index
| * [ticket/15561] Add events for adding columns to search indexkasimi2018-02-163-17/+129
| | | | | | | | PHPBB3-15561
* | [ticket/15537] Add cur_words argument to core.search_native_index_beforekasimi2018-01-281-0/+3
| | | | | | | | PHPBB3-15537
* | [ticket/15537] Add core.search_(native|mysql|postgres|sphinx)_index_beforekasimi2018-01-284-0/+107
|/ | | | PHPBB3-15537
* Merge pull request #5076 from marc1706/ticket/15496Marc Alexander2018-01-071-1/+1
|\ | | | | | | [ticket/15496] Add sort key to SELECT in fulltext_postgres
| * [ticket/15496] Add sort key to SELECT in fulltext_postgresMarc Alexander2018-01-061-1/+1
| | | | | | | | | | | | | | Postgres requires that the column being ordered also appears in the SELECT part of the query. PHPBB3-15496
* | [ticket/14972] replace all occurrences of sizeof() with the count()rxu2018-01-017-57/+57
|/ | | | PHPBB3-14972
* [ticket/15224] Fix some MySQL fulltext index searching errorsrxu2017-11-041-2/+17
| | | | PHPBB3-15224
* [ticket/15419] Fix Sphinx UTF8 search in delta indexrxu2017-10-241-1/+2
| | | | PHPBB3-15419
* [ticket/15367] Escape special characters in Sphinx search backendrxu2017-09-161-4/+4
| | | | PHPBB3-15367
* Merge branch 'prep-release-3.1.11' into prep-release-3.2.1Marc Alexander2017-07-161-0/+21
|\
| * [ticket/security/124] Filter out disallowed search query itemsMarc Alexander2017-06-181-0/+21
| | | | | | | | SECURITY-124
* | [ticket/15044] Make sure fulltext native min and max are numbersMarc Alexander2017-01-241-1/+1
| | | | | | | | PHPBB3-15044
* | Merge branch '3.1.x' into 3.2.xMarc Alexander2017-01-041-9/+16
|\ \ | |/
| * [ticket/14941] Apply changes individually for MySQL fulltext searchDavid Colón2016-12-271-9/+16
| |
* | [ticket/14739] Remove SQLite 2.8.x database driverJakub Senko2016-11-161-4/+2
| | | | | | | | PHPBB3-14739
* | [ticket/14793] Fix "A non-numeric value encountered" PHP warning on PHP 7.1+rxu2016-09-221-1/+1
| | | | | | | | PHPBB3-14793
* | Merge branch '3.1.x' into 3.2.xMarc Alexander2016-09-171-1/+1
|\ \ | |/
| * [ticket/14782] Don't use 'DISTINCT' when using 'SQL_CALC_FOUND_ROWS'DavidIQ2016-09-161-1/+1
| |
* | Merge branch '3.1.x' into 3.2.xAndreas Fischer2016-09-151-1/+1
|\ \ | |/ | | | | | | * 3.1.x: [ticket/14782] Use the $select variable in "Your Posts" search
| * [ticket/14782] Use the $select variable in "Your Posts" searchDavidIQ2016-09-131-1/+1
| |
* | Merge branch '3.1.x' into 3.2.xMarc Alexander2016-09-061-1/+3
|\ \ | |/
| * [ticket/14109] Increase MySQL Version for InnoDB FULLTEXT Index to 5.6.8.Andreas Fischer2016-08-281-1/+3
| | | | | | | | | | | | | | | | This is required for proper overall database operation. In previous versions, InnoDB might error on ALTER statements when multiple FULLTEXT Indexes are defined. PHPBB3-14109
* | Merge branch '3.1.x' into 3.2.xMarc Alexander2016-07-171-46/+0
|\ \ | |/
| * [ticket/14704] Removes unused function and language files in base.phpCrizzo2016-07-031-46/+0
| | | | | | | | PHPBB3-14704
* | Merge remote-tracking branch 'origin/ticket/14272' into ticket/14272-3.2.xMarc Alexander2016-03-273-7/+7
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: phpBB/adm/style/acp_icons.html phpBB/includes/acp/acp_groups.php phpBB/includes/acp/acp_users.php phpBB/includes/functions_acp.php phpBB/includes/ucp/ucp_groups.php phpBB/styles/prosilver/template/ucp_avatar_options_gravatar.html phpBB/styles/prosilver/template/ucp_avatar_options_remote.html phpBB/styles/subsilver2/template/mcp_topic.html phpBB/styles/subsilver2/template/posting_attach_body.html phpBB/styles/subsilver2/template/posting_body.html phpBB/styles/subsilver2/template/posting_poll_body.html phpBB/styles/subsilver2/template/ucp_avatar_options_gravatar.html phpBB/styles/subsilver2/template/ucp_avatar_options_remote.html
| * [ticket/14272] Fix invalid or missing min/max settingsMarc Alexander2015-11-061-2/+2
| | | | | | | | PHPBB3-14272
| * [ticket/14272] Only use maxlength and size for allowed input elementsMarc Alexander2015-11-063-7/+7
| | | | | | | | PHPBB3-14272
* | [ticket/13454] Remove more unused variablesMarc Alexander2016-01-061-1/+0
| | | | | | | | | | | | This should be the last part. Off to checking if the changes were correct. PHPBB3-13454
* | [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-1/+1
| | | | | | | | | | | | This is part 5 and there is more to come. PHPBB3-13454