diff options
author | Tristan Darricau <github@nicofuma.fr> | 2016-09-18 21:25:14 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2016-09-18 21:25:14 +0200 |
commit | 4da479d47f2000265abd2f908665162f8176ea7e (patch) | |
tree | 984f9f20767efaec8c31b8083e261dc72d2541cc /phpBB | |
parent | bc08813866a4496b88777a5d152f601ac521fef1 (diff) | |
parent | a084b07495b063d4f31c03f21df6c940992f53b4 (diff) | |
download | forums-4da479d47f2000265abd2f908665162f8176ea7e.tar forums-4da479d47f2000265abd2f908665162f8176ea7e.tar.gz forums-4da479d47f2000265abd2f908665162f8176ea7e.tar.bz2 forums-4da479d47f2000265abd2f908665162f8176ea7e.tar.xz forums-4da479d47f2000265abd2f908665162f8176ea7e.zip |
Merge pull request #4450 from rxu/ticket/14787
[ticket/14787] Add more parameters to the core.search_modify_url_pameters
* rxu/ticket/14787:
[ticket/14787] Add more parameters to the core.search_modify_url_parameters
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/search.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index cbee369086..7542ac1e31 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -645,11 +645,16 @@ if ($keywords || $author || $author_id || $search_id || $submit) * @event core.search_modify_url_parameters * @var string u_search Search URL parameters string * @var string search_id Predefined search type name + * @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 * @since 3.1.7-RC1 + * @changed 3.1.10-RC1 Added sql_where, total_match_count */ $vars = array( 'u_search', 'search_id', + 'sql_where', + 'total_match_count', ); extract($phpbb_dispatcher->trigger_event('core.search_modify_url_parameters', compact($vars))); |