diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2013-03-05 18:23:13 +0100 | 
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2013-03-05 18:23:13 +0100 | 
| commit | 6c6912f9e65f0683a806548bdc1a3526ed9ae107 (patch) | |
| tree | 25e66dae99267b816d87ed4ea1ea67dc609369d8 | |
| parent | a21de6e3f845f56026757e370b0bae8a02997bad (diff) | |
| download | forums-6c6912f9e65f0683a806548bdc1a3526ed9ae107.tar forums-6c6912f9e65f0683a806548bdc1a3526ed9ae107.tar.gz forums-6c6912f9e65f0683a806548bdc1a3526ed9ae107.tar.bz2 forums-6c6912f9e65f0683a806548bdc1a3526ed9ae107.tar.xz forums-6c6912f9e65f0683a806548bdc1a3526ed9ae107.zip  | |
[ticket/9657] FIx merge conflict from merging develop
PHPBB3-9657
| -rw-r--r-- | phpBB/includes/search/fulltext_native.php | 6 | ||||
| -rw-r--r-- | phpBB/includes/search/fulltext_postgres.php | 6 | 
2 files changed, 2 insertions, 10 deletions
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index 90ea553ddc..2a9b552928 100644 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -913,11 +913,7 @@ class phpbb_search_fulltext_native extends phpbb_search_base  	* @param	int			$per_page			number of ids each page is supposed to contain  	* @return	boolean|int						total number of results  	*/ -<<<<<<< HEAD -	public function author_search($type, $firstpost_only, $sort_by_sql, $sort_key, $sort_dir, $sort_days, $ex_fid_ary, $post_visibility, $topic_id, $author_ary, $author_name, &$id_ary, $start, $per_page) -======= -	public function author_search($type, $firstpost_only, $sort_by_sql, $sort_key, $sort_dir, $sort_days, $ex_fid_ary, $m_approve_fid_ary, $topic_id, $author_ary, $author_name, &$id_ary, &$start, $per_page) ->>>>>>> bee4f8d8185d4ff5278be758db4ea4a814f09b4f +	public function author_search($type, $firstpost_only, $sort_by_sql, $sort_key, $sort_dir, $sort_days, $ex_fid_ary, $post_visibility, $topic_id, $author_ary, $author_name, &$id_ary, &$start, $per_page)  	{  		// No author? No posts  		if (!sizeof($author_ary)) diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php index d5deb47222..8ccd27f43a 100644 --- a/phpBB/includes/search/fulltext_postgres.php +++ b/phpBB/includes/search/fulltext_postgres.php @@ -546,11 +546,7 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base  	* @param	int			$per_page			number of ids each page is supposed to contain  	* @return	boolean|int						total number of results  	*/ -<<<<<<< HEAD -	public function author_search($type, $firstpost_only, $sort_by_sql, $sort_key, $sort_dir, $sort_days, $ex_fid_ary, $post_visibility, $topic_id, $author_ary, $author_name, &$id_ary, $start, $per_page) -======= -	public function author_search($type, $firstpost_only, $sort_by_sql, $sort_key, $sort_dir, $sort_days, $ex_fid_ary, $m_approve_fid_ary, $topic_id, $author_ary, $author_name, &$id_ary, &$start, $per_page) ->>>>>>> bee4f8d8185d4ff5278be758db4ea4a814f09b4f +	public function author_search($type, $firstpost_only, $sort_by_sql, $sort_key, $sort_dir, $sort_days, $ex_fid_ary, $post_visibility, $topic_id, $author_ary, $author_name, &$id_ary, &$start, $per_page)  	{  		// No author? No posts  		if (!sizeof($author_ary))  | 
