I found the answer.
/qa-include/pages/admin/admin-hidden.php line 62
$questions = qa_any_sort_by_date(array_merge($hiddenquestions, $hiddenanswers, $hiddencomments)); $questions = array_reverse($questions); //add this line
$questions = qa_any_sort_by_date(array_merge($hiddenquestions, $hiddenanswers, $hiddencomments));
$questions = array_reverse($questions); //add this line
It will need to hack the core program.
qa-include/db/selects.php (around L340 qa_db_qs_selectspec())
case 'created': case 'hotness': if($specialtype == 'Q_HIDDEN' && $sort == 'created') $sortsql = 'ORDER BY ^posts.' . $sort; else $sortsql = 'ORDER BY ^posts.' . $sort . ' DESC';
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.