diff options
| author | Erwan Nader <ernadoo@gmail.com> | 2016-07-24 18:25:20 +0200 | 
|---|---|---|
| committer | Erwan Nader <ernadoo@gmail.com> | 2016-07-24 18:25:20 +0200 | 
| commit | e7289fa019f57ee6b57c984a7752e934bc7f7c3f (patch) | |
| tree | 39dec303a366e008d067fa28ce63a687d35bb7b5 | |
| parent | 5b501e594c03a6e7d35be28b8b28a3b87df4e1e6 (diff) | |
| download | forums-e7289fa019f57ee6b57c984a7752e934bc7f7c3f.tar forums-e7289fa019f57ee6b57c984a7752e934bc7f7c3f.tar.gz forums-e7289fa019f57ee6b57c984a7752e934bc7f7c3f.tar.bz2 forums-e7289fa019f57ee6b57c984a7752e934bc7f7c3f.tar.xz forums-e7289fa019f57ee6b57c984a7752e934bc7f7c3f.zip | |
[ticket/14592] Fixed docblock from unit tests
PHPBB3-14592
| -rw-r--r-- | phpBB/search.php | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/phpBB/search.php b/phpBB/search.php index 6335adbaf2..8dccc7f14b 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -579,22 +579,22 @@ if ($keywords || $author || $author_id || $search_id || $submit)  	* Event to search otherwise than by keywords or author  	*  	* @event core.search_backend_search_after -	* @var	string		$show_results				'posts' or 'topics' type of ids -	* @var	string		$search_fields				The data fields to search in -	* @var	string		$search_terms				Is either 'all' (use query as entered, words without prefix should default to "have to be in field") or 'any' (ignore search query parts and just return all posts that contain any of the specified words) -	* @var	array		$sort_by_sql				Array of SQL sorting instructions -	* @var	string		$sort_key					The sort key -	* @var	string		$sort_dir					The sort direction -	* @var	string		$sort_days					Limit the age of results -	* @var	array		$ex_fid_ary					Array of excluded forum ids -	* @var	string		$m_approve_posts_fid_sql	Specifies which types of posts the user can view in which forums -	* @var	int			$topic_id					is set to 0 or a topic id, if it is not 0 then only posts in this topic should be searched -	* @var	array		$author_id_ary				Array of exclusive author ids -	* @var	string		$sql_author_match			Specifies the author match, when ANONYMOUS is also a search-match -	* @var	array		$id_ary						Array of post or topic ids for search result -	* @var	int			$start						The starting id of the results -	* @var	int			$per_page					Number of ids each page is supposed to contain -	* @var	int			$total_match_count			The total number of search matches +	* @var	string		show_results				'posts' or 'topics' type of ids +	* @var	string		search_fields				The data fields to search in +	* @var	string		search_terms				Is either 'all' (use query as entered, words without prefix should default to "have to be in field") or 'any' (ignore search query parts and just return all posts that contain any of the specified words) +	* @var	array		sort_by_sql					Array of SQL sorting instructions +	* @var	string		sort_key					The sort key +	* @var	string		sort_dir					The sort direction +	* @var	string		sort_days					Limit the age of results +	* @var	array		ex_fid_ary					Array of excluded forum ids +	* @var	string		m_approve_posts_fid_sql		Specifies which types of posts the user can view in which forums +	* @var	int			topic_id					is set to 0 or a topic id, if it is not 0 then only posts in this topic should be searched +	* @var	array		author_id_ary				Array of exclusive author ids +	* @var	string		sql_author_match			Specifies the author match, when ANONYMOUS is also a search-match +	* @var	array		id_ary						Array of post or topic ids for search result +	* @var	int			start						The starting id of the results +	* @var	int			per_page					Number of ids each page is supposed to contain +	* @var	int			total_match_count			The total number of search matches  	* @since 3.1.10-RC1  	*/  	$vars = array( | 
