Das gibt es auch noch?
also: es geht nur zu ändern, wenn du es im Code direkt machst, denn das Modul hat dafür keine Einstellungen
Falls du dich traust...
Datei view.php // Zeile 51
der Original-Code:
// Loop through existing questions
$sSql = 'SELECT * FROM `'.TABLE_PREFIX.'mod_accordion_questions` WHERE `section_id` = '.(int)$section_id.' ORDER BY `pos` ASC';
das ACS ASC am Ende bestimmt die Sortierung. Ändere es in DESC und du hast eine umgekehrte Reihenfolge (zuletzt eingetragenes Item an erster Stelle
// Loop through existing questions
$sSql = 'SELECT * FROM `'.TABLE_PREFIX.'mod_accordion_questions` WHERE `section_id` = '.(int)$section_id.' ORDER BY `pos` DESC';