From dffae725026a5f19303c36d5250779cf5e8523ab Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 10 Jul 2020 11:54:33 -0400 Subject: Add -l and -r options --- contexts.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'contexts.c') diff --git a/contexts.c b/contexts.c index 77774ae..d8eb4fd 100644 --- a/contexts.c +++ b/contexts.c @@ -26,7 +26,7 @@ const char *ContextsQuery = SQL( SELECT time, context FROM events ORDER BY event DESC - LIMIT 500 // TODO: Configurable. + LIMIT :recent ), activeContexts AS ( SELECT name, query FROM contexts @@ -60,6 +60,7 @@ enum kcgi_err pageContexts(struct kreq *req) { || htmlNav(&html, network, NULL); if (error) return error; + dbBindInt(stmt.contexts, ":recent", pageRecent); dbBindText(stmt.contexts, ":network", network); if (pagePublic) dbBindInt(stmt.contexts, ":query", false); -- cgit 1.4.1