From 356f7bfd0f78d116c95ec0aa940c902378f341dd Mon Sep 17 00:00:00 2001
From: paul <paul@plutz.net>
Date: Thu, 19 May 2016 22:43:33 +0000
Subject: [PATCH] quicker start of page submission

svn path=/trunk/; revision=104
---
 templates/frame.html.sh | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/templates/frame.html.sh b/templates/frame.html.sh
index 5fd6e7c..4c6cb1d 100755
--- a/templates/frame.html.sh
+++ b/templates/frame.html.sh
@@ -74,9 +74,10 @@ $(debug CSS; [ -x "${CSS}" ] && . "${CSS}")
     <div class="NAVIGATION">
       $(debug NAVIGATION = "$NAVIGATION"; for each in ${NAVIGATION}; do printf %s "<a href=\"?p=${each}\">$(l10n "p_${each}")</a>"; done)
     </div>
-    $(debug BODY; [ -x "${BODY}" ] && . "${BODY}" || printf %s 'Error')
-  </body>
-</html>
 EOF
 
+debug BODY; [ -x "${BODY}" ] && . "${BODY}" || printf %s 'Error'
+
+printf '</body></html>'
+
 # vi:set filetype=html:
-- 
2.39.5