View previous topic :: View next topic |
Author |
Message |
freddo1
Joined: 26 May 2004 Posts: 1
|
Posted: Wed May 26, 2004 3:36 am Post subject: comments rank from latest |
|
|
surely it would make more sense to have the latest comments at the top of the list of comments. the way it's set up now, you must scroll all the way down to the latest comment after clicking on the comments link. not elegant.
cheers,
matt |
|
Back to top |
|
 |
stevem
Joined: 15 Mar 2003 Posts: 369
|
Posted: Wed May 26, 2004 5:07 pm Post subject: |
|
|
In b2commentspopup.php just add DESC to Code: | $queryc = "SELECT * FROM $tablecomments WHERE comment_post_ID = $id AND comment_content NOT LIKE '%<trackback />%' ORDER BY comment_date"; | so it reads
Code: | $queryc = "SELECT * FROM $tablecomments WHERE comment_post_ID = $id AND comment_content NOT LIKE '%<trackback />%' ORDER BY comment_date DESC"; | and similarly in b2comments.php |
|
Back to top |
|
 |
|