소스 검색

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

default 3 년 전
부모
커밋
b3b4a4ef61
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);
 }
 }