diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-04-26 15:12:54 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-04-26 15:12:54 +0000 |
commit | 422e472936b8a7af6404f4e70e344f469a91a899 (patch) | |
tree | 9c8b7b059efea7951a4279c1afca08fb52adee9a /phpBB/search.php | |
parent | 5ad7caebc8e0ab08c2d0464d0a561dd562fc5202 (diff) | |
download | forums-422e472936b8a7af6404f4e70e344f469a91a899.tar forums-422e472936b8a7af6404f4e70e344f469a91a899.tar.gz forums-422e472936b8a7af6404f4e70e344f469a91a899.tar.bz2 forums-422e472936b8a7af6404f4e70e344f469a91a899.tar.xz forums-422e472936b8a7af6404f4e70e344f469a91a899.zip |
remove item from change log
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9488 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/search.php')
-rw-r--r-- | phpBB/search.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 6189c359bd..cf2e8615c2 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -373,6 +373,9 @@ if ($keywords || $author || $author_id || $search_id || $submit) ' . ((sizeof($ex_fid_ary)) ? 'AND ' . $db->sql_in_set('t.forum_id', $ex_fid_ary, true) : '') . " $sql_sort"; /* + [Fix] queued replies missing from "view new posts" (Bug #42705 - Patch by Paul) + - Creates temporary table, query is far from optimized + $sql = 'SELECT t.topic_id FROM ' . TOPICS_TABLE . ' t, ' . POSTS_TABLE . ' p WHERE p.post_time > ' . $user->data['user_lastvisit'] . ' |