mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Return the history in reverse order, which has more sense.
This commit is contained in:
parent
d26b31ed1d
commit
b3b4a4ef61
1 changed files with 1 additions and 1 deletions
2
data.c
2
data.c
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue