Răsfoiți Sursa

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

default 3 ani în urmă
părinte
comite
b3b4a4ef61
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      data.c

+ 1 - 1
data.c

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