diff options
author | Renard | 2020-03-27 21:42:18 -0300 |
---|---|---|
committer | Renard | 2020-03-27 21:42:18 -0300 |
commit | cd27ee82e058040afaac9506ad9b92a2bce65d97 (patch) | |
tree | c75cf04a5051d3388c67f09375a3f3fe38435a3e | |
parent | 5de8cff2d7a81274fb9540e14da1fbc1ac330c79 (diff) | |
download | weabot-cd27ee82e058040afaac9506ad9b92a2bce65d97.tar.gz weabot-cd27ee82e058040afaac9506ad9b92a2bce65d97.tar.xz weabot-cd27ee82e058040afaac9506ad9b92a2bce65d97.zip |
Mostrar posts de las ultimas 24 hrs
-rw-r--r-- | cgi/manage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/manage.py b/cgi/manage.py index 776747e..f5b417e 100644 --- a/cgi/manage.py +++ b/cgi/manage.py @@ -159,7 +159,7 @@ def manage(self, path_split): template_filename = "mod.html" template_values = {"mode": 2, "dir": board["dir"], "threads": threads} elif path_split[2] == "recent": - posts = FetchAll("SELECT posts.id, posts.subject, dir, parentid, file, thumb, timestamp_formatted, timestamp, posts.message, INET_NTOA(ip) AS ip, posts.name, email, tripcode FROM posts INNER JOIN boards ON posts.boardid = boards.id ORDER BY timestamp DESC LIMIT 50") + posts = FetchAll("SELECT posts.id, posts.subject, dir, parentid, file, thumb, timestamp_formatted, timestamp, posts.message, INET_NTOA(ip) AS ip, posts.name, email, tripcode FROM posts INNER JOIN boards ON posts.boardid = boards.id WHERE posts.timestamp > UNIX_TIMESTAMP() - 86400 ORDER BY timestamp DESC") template_filename = "recent.html" template_values = {"posts": posts} elif path_split[2] == 'staff': |