PDA

View Full Version : Comment Order Backwards


greenhybrid
04-20-2005, 05:19 PM
It appears the comment ordering is backwards by default. The newest comments are showing up at the top. I don't know if this was intentional, but is there a way to flip it either in options or the code?

cinq
04-21-2005, 07:20 AM
I don't have the code on hand now, but look at the query that pulls the comments (in articles.php), it probably is a matter of ordering the comment dateline by ASC instead of DESC. :)

WiBu
04-23-2005, 05:11 PM
On line 1184 change

ORDER BY a.dateline desc

to

ORDER BY a.dateline asc

greenhybrid
04-23-2005, 05:27 PM
Thanks.