diff options
author | June McEnroe <june@causal.agency> | 2020-07-10 11:54:33 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-10 11:54:33 -0400 |
commit | dffae725026a5f19303c36d5250779cf5e8523ab (patch) | |
tree | 6b4bc6a0172cd0e8e9a6d26fa1f01176d7153a17 /contexts.c | |
parent | Move search help to footer (diff) | |
download | scooper-dffae725026a5f19303c36d5250779cf5e8523ab.tar.gz scooper-dffae725026a5f19303c36d5250779cf5e8523ab.zip |
Add -l and -r options
Diffstat (limited to '')
-rw-r--r-- | contexts.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |