diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-09-22 21:23:58 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-09-22 21:23:58 +0200 |
commit | 430c266eb207b8222191c2ee5bf0b8c8b30cde44 (patch) | |
tree | fdee0bb1b92d471ca2ecbf78a315c64f7947764c | |
parent | 6ae405f743b59913c60bb8774ea9e43fd5e34d9e (diff) | |
parent | 75f57fa407cf09031281e769a33f4063375a7ddd (diff) | |
download | forums-430c266eb207b8222191c2ee5bf0b8c8b30cde44.tar forums-430c266eb207b8222191c2ee5bf0b8c8b30cde44.tar.gz forums-430c266eb207b8222191c2ee5bf0b8c8b30cde44.tar.bz2 forums-430c266eb207b8222191c2ee5bf0b8c8b30cde44.tar.xz forums-430c266eb207b8222191c2ee5bf0b8c8b30cde44.zip |
Merge branch '3.1.x' into 3.2.x
-rw-r--r-- | phpBB/search.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index fdd4aec7ae..747c1fa11a 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -648,14 +648,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', ); |