diff options
author | Tristan Darricau <github@nicofuma.fr> | 2016-10-02 18:08:09 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2016-10-02 18:08:09 +0200 |
commit | 55a057056702dfadcdb2e7bb29da320c7d845859 (patch) | |
tree | a93eb41f6504f5ffc8c140138f16a14606222031 /phpBB/search.php | |
parent | b4e673acc1ec5da11666277f340ac579e054b608 (diff) | |
parent | cc62b68243b9c7866178e1d4a68d141728fe418b (diff) | |
download | forums-55a057056702dfadcdb2e7bb29da320c7d845859.tar forums-55a057056702dfadcdb2e7bb29da320c7d845859.tar.gz forums-55a057056702dfadcdb2e7bb29da320c7d845859.tar.bz2 forums-55a057056702dfadcdb2e7bb29da320c7d845859.tar.xz forums-55a057056702dfadcdb2e7bb29da320c7d845859.zip |
Merge pull request #4469 from rxu/ticket/14787-2
[ticket/14787] Add 1 more parameter to the core.search_modify_url_parameters
* rxu/ticket/14787-2:
[ticket/14787] Add 1 more parameter to the core.search_modify_url_parameters
Diffstat (limited to 'phpBB/search.php')
-rw-r--r-- | phpBB/search.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 89f0e574c3..27ec8e4dab 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -690,8 +690,10 @@ if ($keywords || $author || $author_id || $search_id || $submit) * @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 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 * @changed 3.1.10-RC1 Added show_results, sql_where, total_match_count + * @changed 3.1.11-RC1 Added ex_fid_ary */ $vars = array( 'u_search', @@ -699,6 +701,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) 'show_results', 'sql_where', 'total_match_count', + 'ex_fid_ary', ); extract($phpbb_dispatcher->trigger_event('core.search_modify_url_parameters', compact($vars))); |