Topic: 1.3.5 extern.php behavior changed
From 1.3.5 it lists topics by date created instead of date of last reply.
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.3 bug reports → 1.3.5 extern.php behavior changed
From 1.3.5 it lists topics by date created instead of date of last reply.
Alright, I took some time off to deal with this issue and I found that the order by was changed to thread posted date when it used to be the date of last post in a thread.
fix:
'ORDER BY' => 't.posted DESC',
to:
'ORDER BY' => 't.last_post DESC',
and voila everything works like it was 1.3.4
Why it better?
It used to be like this. Showing latest posts (activity) is more useful as a html list, this way when somebody replies to a topic, thread moves to the top of the list and users who visit website's main page (and not forums) then they'll see that something has changed over there. (exactly as it is at the moment on http://punbb.informer.com/ under Recent Forums posts)
But since I saw that this fix now breaks the rss and other feed logic then I assume it would be better when there was an option to toggle between latest posts and latest topics created.
In 1.4 version added parameter sort — it control topics order in extern.php
PunBB Forums → PunBB 1.3 bug reports → 1.3.5 extern.php behavior changed
Powered by PunBB, supported by Informer Technologies, Inc.