diff options
Diffstat (limited to 'contexts.c')
-rw-r--r-- | contexts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contexts.c b/contexts.c index 5c5e5cc..d55181b 100644 --- a/contexts.c +++ b/contexts.c @@ -69,7 +69,7 @@ enum kcgi_err contextsPage(struct kreq *req) { struct khtmlreq html; error = error || khtml_open(&html, req, 0) - || htmlHead(&html, network) + || htmlHead(&html, req, network) || htmlNav(&html, req); if (error) return error; @@ -142,5 +142,5 @@ enum kcgi_err contextsPage(struct kreq *req) { } if (result != SQLITE_DONE) errx(EX_SOFTWARE, "%s", sqlite3_errmsg(db)); - return htmlFooter(&html) || khtml_close(&html); + return htmlFooter(&html, req) || khtml_close(&html); } |