phpBB originally uses a huge (and probably slow, because it needs lots of memory) query to pull thread data from the database. As our old server sometimes had performance issues, I replaced that huge query with two smaller ones: one index query and one data query. The index query decides about the topic display order and it assumed that all posts have an ascending, unique post id (regardless of the post time). Your messages however have a post id that is higher than posts that were made later (probably due to delayed writes to the database). That's why your messages were shown on the wrong page.
Anyway, the index query is fixed now and voilą, it works. :))
|