Return the history in reverse order, which has more sense.

This commit is contained in:
default 2023-08-17 11:37:51 +02:00
parent d26b31ed1d
commit b3b4a4ef61

2
data.c
View File

@ -1711,7 +1711,7 @@ xs_list *history_list(snac *snac)
{
xs *spec = xs_fmt("%s/history/" "*.html", snac->basedir);
return xs_glob(spec, 1, 0);
return xs_glob(spec, 1, 1);
}