We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7262e2 commit c3fd07aCopy full SHA for c3fd07a
1 file changed
phpBB/search.php
@@ -320,14 +320,19 @@
320
* @var array ex_fid_ary Array of excluded forum ids
321
* @var array author_id_ary Array of exclusive author ids
322
* @var string search_id The id of the search request
323
+ * @var array id_ary Array of post or topic ids for search result
324
+ * @var string show_results 'posts' or 'topics' type of ids
325
* @since 3.1.3-RC1
326
+ * @changed 3.1.10-RC1 Added id_ary, show_results
327
*/
328
$vars = array(
329
'keywords',
330
'sort_by_sql',
331
'ex_fid_ary',
332
'author_id_ary',
333
'search_id',
334
+ 'id_ary',
335
+ 'show_results',
336
);
337
extract($phpbb_dispatcher->trigger_event('core.search_modify_param_before', compact($vars)));
338
0 commit comments