diff options
author | June McEnroe <june@causal.agency> | 2021-04-21 16:58:29 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-04-21 16:59:50 -0400 |
commit | 2c5451f8d0ba7ffac3b0c117dd66303909e7ea32 (patch) | |
tree | d6a8fc4ba69309ac3e0006eb11be3c299214271e /archive.h | |
parent | Parse dates in a hopefully more portable fashion (diff) | |
download | bubger-2c5451f8d0ba7ffac3b0c117dd66303909e7ea32.tar.gz bubger-2c5451f8d0ba7ffac3b0c117dd66303909e7ea32.zip |
Omit HTML nav from nested messages
We don't output mbox for nested messages, nor do we necessarily have a parent message on the same page.
Diffstat (limited to '')
-rw-r--r-- | archive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archive.h b/archive.h index 29833e8..5c7dfcf 100644 --- a/archive.h +++ b/archive.h @@ -233,7 +233,7 @@ int atomThreadClose(FILE *file); int atomIndexOpen(FILE *file); int atomIndexClose(FILE *file); -int htmlMessageOpen(FILE *file, const struct Envelope *envelope); +int htmlMessageOpen(FILE *file, const struct Envelope *envelope, bool nested); int htmlInline(FILE *file, const struct BodyPart *part, const char *content); int htmlAttachmentOpen(FILE *file); int htmlAttachment( |