aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/search.php
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2016-09-29 01:59:16 +0700
committerrxu <rxu@mail.ru>2016-09-29 01:59:16 +0700
commitcc62b68243b9c7866178e1d4a68d141728fe418b (patch)
treefc2d381e4bc92c61013d78d71ce333e8ac1a3100 /phpBB/search.php
parent51d830a6d332b4e37d90ee4f8455a6b3a47f9591 (diff)
downloadforums-cc62b68243b9c7866178e1d4a68d141728fe418b.tar
forums-cc62b68243b9c7866178e1d4a68d141728fe418b.tar.gz
forums-cc62b68243b9c7866178e1d4a68d141728fe418b.tar.bz2
forums-cc62b68243b9c7866178e1d4a68d141728fe418b.tar.xz
forums-cc62b68243b9c7866178e1d4a68d141728fe418b.zip
[ticket/14787] Add 1 more parameter to the core.search_modify_url_parameters
PHPBB3-14787
Diffstat (limited to 'phpBB/search.php')
-rw-r--r--phpBB/search.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/search.php b/phpBB/search.php
index 03575f7e0b..e28ac3fc99 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)));