diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-29 14:33:02 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-29 14:33:02 -0400 |
commit | f63235994855a3a6d71fb82f63b7b9d690ba5527 (patch) | |
tree | 4a28b22c1e3f870135a8ecc518ab3fc00e60ede8 /include | |
parent | 5c726117f22d27ce46b7efefe9da6e39346efa09 (diff) |
engine: handle eachdo with page as source if file is not a template
Diffstat (limited to 'include')
-rw-r--r-- | include/engine.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/engine.h b/include/engine.h index 5da3332..aec55b2 100644 --- a/include/engine.h +++ b/include/engine.h @@ -53,7 +53,10 @@ void handle_contentfor(char **buffer, list_t *content_headers); /* EACHDO */ -void handle_eachdo(char **buffer, key_match_t *match, directive_t *directive); +void handle_eachdo(char **buffer, + key_match_t *match, + directive_t *directive, + config_t *config); void handle_page_source(list_t *atoms, eachdo_operands_t *operands, list_t *directives, |