diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-07-14 17:41:31 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-07-14 17:41:31 +0200 |
commit | 58a9e975f83a8a7b3255052ff9d3dccb0af2d974 (patch) | |
tree | 90a70ed21f3c89699a1252d26a481c819a7aa23a /phpBB/phpbb | |
parent | c15bde161a93fc2abc48cacd7e5a71c682880e52 (diff) | |
parent | e91b465de1c4cf767bba72c9eebe945b898c3fda (diff) | |
download | forums-58a9e975f83a8a7b3255052ff9d3dccb0af2d974.tar forums-58a9e975f83a8a7b3255052ff9d3dccb0af2d974.tar.gz forums-58a9e975f83a8a7b3255052ff9d3dccb0af2d974.tar.bz2 forums-58a9e975f83a8a7b3255052ff9d3dccb0af2d974.tar.xz forums-58a9e975f83a8a7b3255052ff9d3dccb0af2d974.zip |
Merge remote-tracking branch 'galaxyAbstractor/ticket/11697' into develop
* galaxyAbstractor/ticket/11697:
[ticket/11697] author_search() used incorrect parameter
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/search/fulltext_mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/search/fulltext_mysql.php b/phpBB/phpbb/search/fulltext_mysql.php index 7dc4da8ffe..a1e1b089b9 100644 --- a/phpBB/phpbb/search/fulltext_mysql.php +++ b/phpBB/phpbb/search/fulltext_mysql.php @@ -542,7 +542,7 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base * @param int $per_page number of ids each page is supposed to contain * @return boolean|int total number of results */ - 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) + 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)) |