Ok Folks, Here's the solution I found
In group.php, look for
// Create message collection
$collection_factory =& new vB_Group_Collection_Factory($vbulletin, $group);
$collection = $collection_factory->create('message', $discussion['discussionid'], $vbulletin->GPC['pagenumber'], $perpage, false);
Change "false" to 'true' and you'll have your messages in reverse order.
|