ich hatte im 2er Board einen Code zur sortierung den ich im 3.0.0 auch gene benutzen würde.Was muß geändert werden damit er fürs 3.0.0 funktioniert ???
Code: Alles auswählen
viewforum.php
++FINDE++
Code:
//
// Grab all the basic data (all topics except announcements)
// for this forum
//
++DANACH EINFÜGEN++
Code:
$order = ( $forum_id == 2 ) ? 't.topic_title ASC' : 't.topic_type DESC, t.topic_last_post_id DESC';
...die ForenID angleichen.
++FINDE++
Code:
ORDER BY t.topic_type DESC, t.topic_last_post_id DESC
++MIT FOLGENDEM ERSETZEN++
Code:
ORDER BY $order
Damit würden im Forum No.2 die Themen alphabetisch absteigend sortiert werden.
gruß mamaryllis