Look for the following line under ELSE block in question.php :
qa_sort_by($answers, 'created');
Replace it with :
{
qa_sort_by($answers, 'created');
$answers=array_reverse($answers,true);
}
NOTE: This is definitely not a clean way of doing what you wanted. But will do the job.