From 85b4dcdce42ff49c727f766754a42d40fb537323 Mon Sep 17 00:00:00 2001 From: Annwan Date: Tue, 13 Aug 2024 01:31:19 +0200 Subject: [PATCH] [YQTemplate] actually output the template --- yqtemplate.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yqtemplate.lua b/yqtemplate.lua index 0531356..0a390d8 100644 --- a/yqtemplate.lua +++ b/yqtemplate.lua @@ -29,6 +29,6 @@ return { if fcgi.getenv("REQUEST_METHOD") == "POST" then data = fcgi.post() end - form({data = data}) + fcgi.print(form({data = data})) end }