Provo a dare una mano qui...

... la modifica dovrebbe essere questa:
All'interno del file
./viewforum.php si deve
sostituire questo:
Codice: Seleziona tutto
$sort_by_text = array('a' => $user->lang['AUTHOR'], 't' => $user->lang['POST_TIME'], 'r' => $user->lang['REPLIES'], 's' => $user->lang['SUBJECT'], 'v' => $user->lang['VIEWS']);
$sort_by_sql = array('a' => 't.topic_first_poster_name', 't' => 't.topic_last_post_time', 'r' => 't.topic_replies', 's' => 't.topic_title', 'v' => 't.topic_views');
con
Codice: Seleziona tutto
$sort_by_text = array('a' => $user->lang['AUTHOR'], 't' => $user->lang['POST_TIME'], 'r' => $user->lang['REPLIES'], 's' => $user->lang['SUBJECT'], 'v' => $user->lang['VIEWS'], 'c' => $user->lang['FIRST_POST_TIME']);
$sort_by_sql = array('a' => 't.topic_first_poster_name', 't' => 't.topic_last_post_time', 'r' => 't.topic_replies', 's' => 't.topic_title', 'v' => 't.topic_views', 'c' => 't.topic_time');
All'interno del file
./language/it/common.php , conviene
sostituire questo:
con
e, sempre nello stesso file,
sotto a questo:
si deve
inserire:
Tale modifica può essere anche applicata al pannello di controllo utente... in modo che l'utente possa scegliere in anticipo anche questo tipo di ordinamento, come standard per la visualizzazione. Per far ciò:
all'interno del file
./includes/ucp/ucp_prefs.php si deve sostituire questo:
Codice: Seleziona tutto
$sort_by_topic_text = array('a' => $user->lang['AUTHOR'], 't' => $user->lang['POST_TIME'], 'r' => $user->lang['REPLIES'], 's' => $user->lang['SUBJECT'], 'v' => $user->lang['VIEWS']);
$sort_by_topic_sql = array('a' => 't.topic_first_poster_name', 't' => 't.topic_last_post_time', 'r' => 't.topic_replies', 's' => 't.topic_title', 'v' => 't.topic_views');
con
Codice: Seleziona tutto
$sort_by_topic_text = array('a' => $user->lang['AUTHOR'], 't' => $user->lang['POST_TIME'], 'r' => $user->lang['REPLIES'], 's' => $user->lang['SUBJECT'], 'v' => $user->lang['VIEWS'], 'c' => $user->lang['FIRST_POST_TIME']);
$sort_by_topic_sql = array('a' => 't.topic_first_poster_name', 't' => 't.topic_last_post_time', 'r' => 't.topic_replies', 's' => 't.topic_title', 'v' => 't.topic_views', 'c' => 't.topic_time');
In locale sembra funzionare alla perfezione... ed ho appurato che anche nella versione 3.0.8 tale modifica non genera problemi. Ovviamente aspetto la conferma/smentita di qualcuno che conosca le varie funzioni di phpBB meglio di me...
