[svn r13046] fix still bugs when listing threads where last poster is deleted

skala
Eric Marguin 18 years ago
parent 2ec9750665
commit 1b0a6df37f
  1. 8
      main/forum/forumfunction.inc.php

@ -1292,9 +1292,9 @@ function get_threads($forum_id)
ON thread.thread_id=item_properties.ref
AND item_properties.visibility='1'
AND item_properties.tool='".TOOL_FORUM_THREAD."'
INNER JOIN $table_users users
LEFT JOIN $table_users users
ON thread.thread_poster_id=users.user_id
INNER JOIN $table_posts post
LEFT JOIN $table_posts post
ON thread.thread_last_post = post.post_id
LEFT JOIN $table_users last_poster_users
ON post.poster_id= last_poster_users.user_id
@ -1314,9 +1314,9 @@ function get_threads($forum_id)
ON thread.thread_id=item_properties.ref
AND item_properties.visibility<>2
AND item_properties.tool='".TOOL_FORUM_THREAD."'
INNER JOIN $table_users users
LEFT JOIN $table_users users
ON thread.thread_poster_id=users.user_id
INNER JOIN $table_posts post
LEFT JOIN $table_posts post
ON thread.thread_last_post = post.post_id
LEFT JOIN $table_users last_poster_users
ON post.poster_id= last_poster_users.user_id

Loading…
Cancel
Save