diff options
-rw-r--r-- | phpBB/docs/CHANGELOG.html | 1 | ||||
-rw-r--r-- | phpBB/search.php | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 11b60c3bbf..cd2961897d 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -148,7 +148,6 @@ <li>[Fix] Approving a topic when some of the posts within that topic have already been approved (Bug #42585 - Patch by TerraFrost)</li> <li>[Fix] Online status shown when post hidden (Bug #35505 - Patch by Raimon)</li> <li>[Fix] memberlist.php display formating can be distorted by posting long URL for website (Bug #36675 - Patch by TerraFrost)</li> - <li>[Fix] queued replies missing from "view new posts" (Bug #42705 - Patch by Paul)</li> <li>[Fix] Display the online status of hidden users to users with the u_viewonline permission when viewing PMs.</li> <li>[Fix] "Select all" selects much too much in Opera (Bug #42885 - Patch by TerraFrost and ToonArmy)</li> <li>[Change] Default difference view is now 'inline' instead of 'side by side'</li> 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'] . ' |