diff options
author | default <nobody@localhost> | 2023-08-17 11:37:51 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-08-17 11:37:51 +0200 |
commit | b3b4a4ef61da620d97e1373b16b9844fa6777370 (patch) | |
tree | 8992c48d5233da1f674ea4c0fafbd0369673131e | |
parent | d26b31ed1d5ca138dacbd0697be38d5df7b87e10 (diff) |
Return the history in reverse order, which has more sense.
-rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |