فهرست منبع

Merge pull request #31 from 2DU/unstable

최적화
2DU 9 سال پیش
والد
کامیت
ecdd6606a7
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      main.py

+ 1 - 1
main.py

@@ -244,7 +244,7 @@ def recent_changes():
     i = 0
     div = '<div><table style="width: 100%;"><tbody><tr><td style="text-align: center;width:33.33%;">문서명</td><td style="text-align: center;width:33.33%;">기여자</td><td style="text-align: center;width:33.33%;">시간</td></tr>'
     
-    db_ex("select * from history order by date desc limit 50")
+    db_ex("select id, title, date, ip, send, leng from history order by date desc limit 50")
     rows = db_get()
     if(rows):
         while(True):