Display notes with most recent first?
Moderators: Developer, Contributor
Display notes with most recent first?
Sorry if this is answered somewhere else, but is there an easy way to have Mantis display notes with the most recent appearing first (at the top of the list)?
-
J-F Desrosiers
yes: $g_bugnote_order = 'ASC';
Look at theses lines in the default_config_inc.php file:
Code: Select all
###############################
# Mantis Bugnote Settings
###############################
# --- bugnote ordering ------------
# change to ASC or DESC
$g_bugnote_order = 'DESC';
-
QAbe