Recent Topics

1 Jul 22, 2005 04:24    

Is it possible to reverse the order of the comments so that the most recently added is first?

2 Jul 22, 2005 05:10

Sure.

In your skin's _feedback.php file, and/or the _feedback.php file in the skins folder, find this part:

$CommentList = & new CommentList( 0, implode(',', $type_list), array(), $id, '', 'ASC' );

and change that to

$CommentList = & new CommentList( 0, implode(',', $type_list), array(), $id, '', 'DESC' );

3 Jul 22, 2005 23:25

isaac wrote:

Sure.

In your skin's _feedback.php file, and/or the _feedback.php file in the skins folder, find this part:

$CommentList = & new CommentList( 0, implode(',', $type_list), array(), $id, '', 'ASC' );

and change that to

$CommentList = & new CommentList( 0, implode(',', $type_list), array(), $id, '', 'DESC' );

Thank you! I was reading that line and for some reason the ASC thing didn't register.


Form is loading...