mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #3822 from brunoais/ticket/14083
[ticket/14083] Fix wrong variables from previous commit
This commit is contained in:
commit
8d54f06d19
1 changed files with 4 additions and 0 deletions
|
@ -685,6 +685,7 @@ class fulltext_mysql extends \phpbb\search\base
|
||||||
* Set to 0 to force a re-count
|
* Set to 0 to force a re-count
|
||||||
* @var string sql_sort_table CROSS JOIN'ed table to allow doing the sort chosen
|
* @var string sql_sort_table CROSS JOIN'ed table to allow doing the sort chosen
|
||||||
* @var string sql_sort_join Condition to define how to join the CROSS JOIN'ed table specifyed in sql_sort_table
|
* @var string sql_sort_join Condition to define how to join the CROSS JOIN'ed table specifyed in sql_sort_table
|
||||||
|
* @var string type Either "posts" or "topics" specifying the type of search being made
|
||||||
* @var array author_ary Array of user_id containing the users to filter the results to
|
* @var array author_ary Array of user_id containing the users to filter the results to
|
||||||
* @var string author_name An extra username to search on
|
* @var string author_name An extra username to search on
|
||||||
* @var string sql_author SQL WHERE condition for the post author ids
|
* @var string sql_author SQL WHERE condition for the post author ids
|
||||||
|
@ -697,6 +698,7 @@ class fulltext_mysql extends \phpbb\search\base
|
||||||
* @var string sort_days Time, in days, that the oldest post showing can have
|
* @var string sort_days Time, in days, that the oldest post showing can have
|
||||||
* @var string sql_time The SQL to search on the time specifyed by sort_days
|
* @var string sql_time The SQL to search on the time specifyed by sort_days
|
||||||
* @var bool firstpost_only Wether or not to search only on the first post of the topics
|
* @var bool firstpost_only Wether or not to search only on the first post of the topics
|
||||||
|
* @var string sql_firstpost The SQL with the conditions to join the tables when using firstpost_only
|
||||||
* @var array ex_fid_ary Forum ids that must not be searched on
|
* @var array ex_fid_ary Forum ids that must not be searched on
|
||||||
* @var array sql_fora SQL query for ex_fid_ary
|
* @var array sql_fora SQL query for ex_fid_ary
|
||||||
* @var string m_approve_fid_sql WHERE clause condition on post_visibility restrictions
|
* @var string m_approve_fid_sql WHERE clause condition on post_visibility restrictions
|
||||||
|
@ -707,6 +709,7 @@ class fulltext_mysql extends \phpbb\search\base
|
||||||
'result_count',
|
'result_count',
|
||||||
'sql_sort_table',
|
'sql_sort_table',
|
||||||
'sql_sort_join',
|
'sql_sort_join',
|
||||||
|
'type',
|
||||||
'author_ary',
|
'author_ary',
|
||||||
'author_name',
|
'author_name',
|
||||||
'sql_author',
|
'sql_author',
|
||||||
|
@ -719,6 +722,7 @@ class fulltext_mysql extends \phpbb\search\base
|
||||||
'sort_days',
|
'sort_days',
|
||||||
'sql_time',
|
'sql_time',
|
||||||
'firstpost_only',
|
'firstpost_only',
|
||||||
|
'sql_firstpost',
|
||||||
'ex_fid_ary',
|
'ex_fid_ary',
|
||||||
'sql_fora',
|
'sql_fora',
|
||||||
'm_approve_fid_sql',
|
'm_approve_fid_sql',
|
||||||
|
|
Loading…
Add table
Reference in a new issue