snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit b3b4a4ef61da620d97e1373b16b9844fa6777370
parent d26b31ed1d5ca138dacbd0697be38d5df7b87e10
Author: default <nobody@localhost>
Date:   Thu, 17 Aug 2023 11:37:51 +0200

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

Diffstat:
Mdata.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data.c b/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); }