1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-19 07:08:09 +01:00

Merge pull request #4454 from rxu/tcket/14787-1

[ticket/14787] Add more parameters to the core.search_modify_url_parameters
This commit is contained in:
Marc Alexander 2016-09-22 21:23:55 +02:00
commit 75f57fa407
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -645,14 +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 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
* @since 3.1.7-RC1
* @changed 3.1.10-RC1 Added sql_where, total_match_count
* @changed 3.1.10-RC1 Added show_results, sql_where, total_match_count
*/
$vars = array(
'u_search',
'search_id',
'show_results',
'sql_where',
'total_match_count',
);