From 5ad7caebc8e0ab08c2d0464d0a561dd562fc5202 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sun, 26 Apr 2009 15:11:32 +0000 Subject: [PATCH] group by is required to be correct, but this creates a temporary table. I do not think we will let "new posts" display non-approved posts... git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9487 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/search.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/search.php b/phpBB/search.php index 80ad756329..6189c359bd 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -378,8 +378,9 @@ if ($keywords || $author || $author_id || $search_id || $submit) WHERE p.post_time > ' . $user->data['user_lastvisit'] . ' AND t.topic_id = p.topic_id AND t.topic_moved_id = 0 - ' . $m_approve_fid_sql . ' + ' . $m_approve_fid_sql . ' ' . ((sizeof($ex_fid_ary)) ? 'AND ' . $db->sql_in_set('t.forum_id', $ex_fid_ary, true) : '') . " + GROUP BY t.topic_id $sql_sort"; */ $field = 'topic_id';