summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-08-17 11:37:51 +0200
committerdefault <nobody@localhost>2023-08-17 11:37:51 +0200
commitb3b4a4ef61da620d97e1373b16b9844fa6777370 (patch)
tree8992c48d5233da1f674ea4c0fafbd0369673131e /data.c
parentd26b31ed1d5ca138dacbd0697be38d5df7b87e10 (diff)
Return the history in reverse order, which has more sense.
Diffstat (limited to 'data.c')
-rw-r--r--data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/data.c b/data.c
index c2d69c8..4f0d42a 100644
--- 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);
}