mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge branch '3.2.x'
* 3.2.x: [ticket/14787] Add 1 more parameter to the core.search_modify_url_parameters
This commit is contained in:
commit
3375ce16eb
1 changed files with 3 additions and 0 deletions
|
@ -698,8 +698,10 @@ if ($keywords || $author || $author_id || $search_id || $submit)
|
||||||
* @var string show_results String indicating the show results mode
|
* @var string show_results String indicating the show results mode
|
||||||
* @var string sql_where The SQL WHERE string used by search to get topic data
|
* @var string sql_where The SQL WHERE string used by search to get topic data
|
||||||
* @var int total_match_count The total number of search matches
|
* @var int total_match_count The total number of search matches
|
||||||
|
* @var array ex_fid_ary Array of excluded forum ids
|
||||||
* @since 3.1.7-RC1
|
* @since 3.1.7-RC1
|
||||||
* @changed 3.1.10-RC1 Added show_results, sql_where, total_match_count
|
* @changed 3.1.10-RC1 Added show_results, sql_where, total_match_count
|
||||||
|
* @changed 3.1.11-RC1 Added ex_fid_ary
|
||||||
*/
|
*/
|
||||||
$vars = array(
|
$vars = array(
|
||||||
'u_search',
|
'u_search',
|
||||||
|
@ -707,6 +709,7 @@ if ($keywords || $author || $author_id || $search_id || $submit)
|
||||||
'show_results',
|
'show_results',
|
||||||
'sql_where',
|
'sql_where',
|
||||||
'total_match_count',
|
'total_match_count',
|
||||||
|
'ex_fid_ary',
|
||||||
);
|
);
|
||||||
extract($phpbb_dispatcher->trigger_event('core.search_modify_url_parameters', compact($vars)));
|
extract($phpbb_dispatcher->trigger_event('core.search_modify_url_parameters', compact($vars)));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue