From 6ea664cbf65167112ace2e3f0fedfff0f3f3a2de Mon Sep 17 00:00:00 2001 From: lichenblankie Date: Fri, 5 Jun 2026 02:04:43 +0000 Subject: [PATCH] fix: restore PER_PAGE constant --- tinyweb_forum/handlers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tinyweb_forum/handlers.py b/tinyweb_forum/handlers.py index 9efcfa3..8d125b0 100644 --- a/tinyweb_forum/handlers.py +++ b/tinyweb_forum/handlers.py @@ -7,6 +7,7 @@ from urllib.parse import unquote MAX_TITLE_LENGTH = 200 MAX_BODY_LENGTH = 10000 +PER_PAGE = 20 RECENT_SECONDS = 86400 * 7 # "new" = within last 7 days