From 1a454c916fbf45074b64576e1d343f1a7ff58e62 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 23 Apr 2020 16:17:30 -0400 Subject: Move message nav back below recipients --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.c b/html.c index b138e73..200032a 100644 --- a/html.c +++ b/html.c @@ -158,9 +158,9 @@ int htmlMessageOpen(FILE *file, const struct Envelope *envelope) { }; int error = 0 || templateRender(file, template, vars, escapeXML) - || htmlMessageNav(file, envelope) || htmlAddressList(file, "to", envelope->to) || htmlAddressList(file, "cc", envelope->cc) + || htmlMessageNav(file, envelope) || templateRender(file, TEMPLATE(), NULL, NULL); free(mailto); free(fragment); -- cgit 1.4.1